diff options
author | Marvin Borner | 2019-12-17 21:50:02 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-17 21:50:02 +0100 |
commit | 025709e8643eb24e3360e575564b34ebd8062fd7 (patch) | |
tree | 16e45f68a958419a3e497e7b01e6472e92ffe94c /src/userspace/mlibc | |
parent | 6188eed3863e6087a7d5b7d988e91d711b45064b (diff) |
Finally fixed text input syscalls!
I guess I can officially call me dumb now as I just forgot
to return the actual value from the syscall handler...
Diffstat (limited to 'src/userspace/mlibc')
-rw-r--r-- | src/userspace/mlibc/stdio/getch.c | 5 | ||||
-rw-r--r-- | src/userspace/mlibc/stdio/writec.c | 4 |
2 files changed, 5 insertions, 4 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 diff --git a/src/userspace/mlibc/stdio/writec.c b/src/userspace/mlibc/stdio/writec.c index 9ffb1a1..ee588e5 100644 --- a/src/userspace/mlibc/stdio/writec.c +++ b/src/userspace/mlibc/stdio/writec.c @@ -1,4 +1,6 @@ +#include <syscall.h> + void writec(char c) { - // + syscall_writec(c); }
\ No newline at end of file |