diff options
Diffstat (limited to 'src/network/socket.c')
-rw-r--r-- | src/network/socket.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/network/socket.c b/src/network/socket.c index afaeb411..4f1e86db 100644 --- a/src/network/socket.c +++ b/src/network/socket.c @@ -1,9 +1,7 @@ #include <sys/socket.h> #include "syscall.h" -#include "socketcall.h" int socket(int domain, int type, int protocol) { - unsigned long args[] = { domain, type, protocol }; - return syscall2(__NR_socketcall, SYS_SOCKET, (long)args); + return socketcall(socket, domain, type, protocol, 0, 0, 0); } |