aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/syscall.h
diff options
context:
space:
mode:
authorMarvin Borner2019-12-17 21:50:02 +0100
committerMarvin Borner2019-12-17 21:50:02 +0100
commit025709e8643eb24e3360e575564b34ebd8062fd7 (patch)
tree16e45f68a958419a3e497e7b01e6472e92ffe94c /src/userspace/syscall.h
parent6188eed3863e6087a7d5b7d988e91d711b45064b (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/syscall.h')
-rw-r--r--src/userspace/syscall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userspace/syscall.h b/src/userspace/syscall.h
index c46bb54..8dd647f 100644
--- a/src/userspace/syscall.h
+++ b/src/userspace/syscall.h
@@ -70,9 +70,9 @@ DECL_SYSCALL1(write, char *);
DECL_SYSCALL1(read, char *);
-DECL_SYSCALL1(writec, char *);
+DECL_SYSCALL1(writec, char);
-DECL_SYSCALL1(readc, char *);
+DECL_SYSCALL0(readc);
DECL_SYSCALL0(get_pointers);