diff options
Diffstat (limited to 'src/kernel/syscall/actions/sys_getch.c')
-rw-r--r-- | src/kernel/syscall/actions/sys_getch.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/kernel/syscall/actions/sys_getch.c b/src/kernel/syscall/actions/sys_getch.c deleted file mode 100644 index 3ce1f8c..0000000 --- a/src/kernel/syscall/actions/sys_getch.c +++ /dev/null @@ -1,11 +0,0 @@ -#include <stdint.h> -#include <kernel/lib/stdio.h> -#include <kernel/io/io.h> - -uint32_t sys_getch() -{ - sti(); - uint32_t key = getch(); - cli(); - return key; -}
\ No newline at end of file |