summaryrefslogtreecommitdiff
path: root/src/network/socketpair.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-15 04:40:40 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-15 04:40:40 -0500
commit03a2f3e48caec15b1a9cebccc85328e9b8169df0 (patch)
tree58db0d85a26142b4ec2b8334f7e898a7b49e90dd /src/network/socketpair.c
parentcfe373146d232d7c89a60920f77b9451bcfee96b (diff)
downloadmusl-03a2f3e48caec15b1a9cebccc85328e9b8169df0.tar.gz
cleanup socketcall syscall interface to ease porting to sane(r) archs
Diffstat (limited to 'src/network/socketpair.c')
-rw-r--r--src/network/socketpair.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/network/socketpair.c b/src/network/socketpair.c
index 65a47fd9..b15f8467 100644
--- a/src/network/socketpair.c
+++ b/src/network/socketpair.c
@@ -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);
}