From 025709e8643eb24e3360e575564b34ebd8062fd7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 17 Dec 2019 21:50:02 +0100 Subject: 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... --- src/userspace/mlibc/stdio/writec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/userspace/mlibc/stdio/writec.c') 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 + void writec(char c) { - // + syscall_writec(c); } \ No newline at end of file -- cgit v1.2.3