diff options
Diffstat (limited to 'src/sys/include/compat/unix/syscall.h')
-rw-r--r-- | src/sys/include/compat/unix/syscall.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sys/include/compat/unix/syscall.h b/src/sys/include/compat/unix/syscall.h index 42dc4c0..9b76139 100644 --- a/src/sys/include/compat/unix/syscall.h +++ b/src/sys/include/compat/unix/syscall.h @@ -31,9 +31,11 @@ #define _UNIX_SYSCALL_H_ 1 #include <sys/proc.h> +#include <sys/socket.h> #include <sys/param.h> #include <sys/mount.h> #include <sys/syscall.h> +#include <os/ucred.h> #include <os/iotap.h> #include <os/reboot.h> #include <dms/dms.h> @@ -95,7 +97,10 @@ scret_t(*g_unix_sctab[])(struct syscall_args *) = { [SYS_dmsio] = sys_dmsio, [SYS_read] = sys_read, [SYS_close] = sys_close, - [SYS_lseek] = sys_lseek + [SYS_lseek] = sys_lseek, + [SYS_socket] = sys_socket, + [SYS_listen] = sys_listen, + [SYS_seteuid] = sys_seteuid }; #endif /* !_NEED_UNIX_SCTAB */ |