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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/stdio/getch.c b/src/kernel/lib/stdio/getch.c
index e806013..4f6ed39 100644
--- a/src/kernel/lib/stdio/getch.c
+++ b/src/kernel/lib/stdio/getch.c
@@ -1,11 +1,11 @@
#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) {
- timer_wait(1); // IDK why!
- }
+ };
return keyboard_char_buffer;
} \ No newline at end of file