aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/stdio/getch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/stdio/getch.c')
-rw-r--r--src/userspace/mlibc/stdio/getch.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/userspace/mlibc/stdio/getch.c b/src/userspace/mlibc/stdio/getch.c
index 114b6e0..dc9c40e 100644
--- a/src/userspace/mlibc/stdio/getch.c
+++ b/src/userspace/mlibc/stdio/getch.c
@@ -1,7 +1,6 @@
-// #include <syscall.h>
+#include <syscall.h>
char getch()
{
- // return ((char *) syscall_read())[0];
- return 0;
+ return (char) syscall_readc();
} \ No newline at end of file