diff --git a/reactos/lib/crt/conio/getch.c b/reactos/lib/crt/conio/getch.c index c138d2cf6ff..2f098464c37 100644 --- a/reactos/lib/crt/conio/getch.c +++ b/reactos/lib/crt/conio/getch.c @@ -53,17 +53,3 @@ int _getch(void) return c; } -#if 0 -/* - * @unimplemented - */ -int _getche(void) -{ - int c; - - c = _getch(); - _putch(c); - - return c; -} -#endif