diff options
Diffstat (limited to 'src/kernel/syscalls.h')
-rw-r--r-- | src/kernel/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/syscalls.h b/src/kernel/syscalls.h index a986a33..83a68b2 100644 --- a/src/kernel/syscalls.h +++ b/src/kernel/syscalls.h @@ -19,7 +19,7 @@ _Noreturn void _syscall_exit(const char *msg, size_t len); /** Waits for a child to exit, putting its exit message into *buf. * @return the length of the message */ -int _syscall_await(char *buf, int *len); +int _syscall_await(char *buf, int len); /** Creates a copy of the current process, and executes it. * All user memory pages get copied too. |