aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/syscall.h
diff options
context:
space:
mode:
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 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