fix error returns in gethostby*_r functions
[musl] / src / network / socketpair.c
index 65a47fd..b15f846 100644 (file)
@@ -1,9 +1,7 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 
 int socketpair(int domain, int type, int protocol, int fd[2])
 {
-       unsigned long args[] = { domain, type, protocol, (unsigned long)fd };
-       return syscall2(__NR_socketcall, SYS_SOCKETPAIR, (long)args);
+       return socketcall(socketpair, domain, type, protocol, fd, 0, 0);
 }