aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/stdio/getch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/stdio/getch.c')
-rw-r--r--src/kernel/lib/stdio/getch.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/kernel/lib/stdio/getch.c b/src/kernel/lib/stdio/getch.c
deleted file mode 100644
index 4f6ed39..0000000
--- a/src/kernel/lib/stdio/getch.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <kernel/input/input.h>
-#include <kernel/timer/timer.h>
-#include <kernel/system.h>
-
-char getch()
-{
- keyboard_char_buffer = 0;
- while (keyboard_char_buffer == 0) {
- };
- return keyboard_char_buffer;
-} \ No newline at end of file