cleanup socketcall syscall interface to ease porting to sane(r) archs
[musl] / src / network / socket.c
index afaeb41..4f1e86d 100644 (file)
@@ -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);
 }