diff --git a/kbhit.c b/kbhit.c deleted file mode 100644 index 4ce1894ca..000000000 --- a/kbhit.c +++ /dev/null @@ -1,19 +0,0 @@ -/* - * Keyboard test program. - */ - -#include - -int main(void) -{ - unsigned char c; - - clrscr(); - cputs(" Keyboard Test\r\n"); - - while (1) { - c = cgetc(); - cputc(c); - } - return 0; -}