clean up the getch.c remove unsused code.

svn path=/trunk/; revision=22021
This commit is contained in:
Magnus Olsen 2006-05-24 20:44:37 +00:00
parent f9e014a9a7
commit 70f6440451

View file

@ -53,17 +53,3 @@ int _getch(void)
return c;
}
#if 0
/*
* @unimplemented
*/
int _getche(void)
{
int c;
c = _getch();
_putch(c);
return c;
}
#endif