diff options
author | Marvin Borner | 2019-12-08 12:27:00 +0100 |
---|---|---|
committer | Marvin Borner | 2019-12-08 12:27:00 +0100 |
commit | e3c982ee44cff38bd764fbb6ab94972cf868a10a (patch) | |
tree | 755ed2716a4a3fb6caf04abaef00a784297692fe /src/userspace/syscall.h | |
parent | d94b024b73aeca06de417e0fd3c502495312a8b2 (diff) |
Working text input!
Diffstat (limited to 'src/userspace/syscall.h')
-rw-r--r-- | src/userspace/syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userspace/syscall.h b/src/userspace/syscall.h index 6750093..d5d8920 100644 --- a/src/userspace/syscall.h +++ b/src/userspace/syscall.h @@ -64,13 +64,13 @@ */ DECL_SYSCALL1(write, char *); -DECL_SYSCALL0(read); +DECL_SYSCALL1(read, char *); /** * DEFINITIONS */ DEFN_SYSCALL1(write, 1, char *); -DEFN_SYSCALL0(read, 2); +DEFN_SYSCALL1(read, 2, char *); #endif |