From 70f6440451a9cd362c1180e67cfe640efe295202 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Wed, 24 May 2006 20:44:37 +0000 Subject: [PATCH] clean up the getch.c remove unsused code. svn path=/trunk/; revision=22021 --- reactos/lib/crt/conio/getch.c | 14 -------------- 1 file changed, 14 deletions(-) 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