aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_read.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/syscall/actions/sys_read.c')
-rw-r--r--src/kernel/syscall/actions/sys_read.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/kernel/syscall/actions/sys_read.c b/src/kernel/syscall/actions/sys_read.c
deleted file mode 100644
index 24d83d1..0000000
--- a/src/kernel/syscall/actions/sys_read.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdint.h>
-#include <kernel/lib/stdio.h>
-#include <kernel/input/input.h>
-#include <kernel/lib/lib.h>
-#include <kernel/lib/string.h>
-
-uint32_t sys_read(char *buf)
-{
- keyboard_clear_buffer();
- keyboard_char_buffer = 0;
- while (keyboard_char_buffer != '\n') {
- getch();
- }
- memcpy(buf, keyboard_buffer, strlen(keyboard_buffer));
- return strlen(buf);
-}
-
-uint32_t sys_readc()
-{
- return (uint32_t)getch();
-} \ No newline at end of file