diff options
Diffstat (limited to 'userland/libc/include/syscall.h')
-rw-r--r-- | userland/libc/include/syscall.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userland/libc/include/syscall.h b/userland/libc/include/syscall.h index f318955..dcc4742 100644 --- a/userland/libc/include/syscall.h +++ b/userland/libc/include/syscall.h @@ -1,8 +1,8 @@ #ifndef SYSCALL_H #define SYSCALL_H -#include "socket.h" #include <stddef.h> #include <stdint.h> +#include <sys/socket.h> #include <sys/types.h> #define SYS_OPEN 0 @@ -60,6 +60,7 @@ #define SYS_OPEN_PROCESS 49 #define SYS_LSEEK 50 #define SYS_CONNECT 51 +#define SYS_SETSOCKOPT 52 int syscall(uint32_t eax, uint32_t ebx, uint32_t ecx, uint32_t edx, uint32_t esi, uint32_t edi); |