aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib')
-rw-r--r--src/kernel/lib/stdio.h2
-rw-r--r--src/kernel/lib/stdio/getch.c11
2 files changed, 0 insertions, 13 deletions
diff --git a/src/kernel/lib/stdio.h b/src/kernel/lib/stdio.h
index 7dae60e..26b9ce8 100644
--- a/src/kernel/lib/stdio.h
+++ b/src/kernel/lib/stdio.h
@@ -3,8 +3,6 @@
#include <stdarg.h>
-char getch();
-
void putch(char c);
void vprintf(const char *fmt, va_list args);
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