diff options
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/syscalls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/syscalls.h b/src/shared/syscalls.h index c6d3c33..f19f05a 100644 --- a/src/shared/syscalls.h +++ b/src/shared/syscalls.h @@ -82,6 +82,6 @@ int _syscall_fs_respond(void __user *buf, int ret, int flags); * @return address of the first affected page (usually == addr) */ void __user *_syscall_memflag(void __user *addr, size_t len, int flags); -handle_t _syscall_pipe(int flags); +int _syscall_pipe(handle_t __user user_ends[2], int flags); void _syscall_debug_klog(const void __user *buf, size_t len); |