diff options
| author | Rich Felker <dalias@aerifal.cx> | 2011-02-15 04:40:40 -0500 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2011-02-15 04:40:40 -0500 | 
| commit | 03a2f3e48caec15b1a9cebccc85328e9b8169df0 (patch) | |
| tree | 58db0d85a26142b4ec2b8334f7e898a7b49e90dd /src/network/socket.c | |
| parent | cfe373146d232d7c89a60920f77b9451bcfee96b (diff) | |
| download | musl-03a2f3e48caec15b1a9cebccc85328e9b8169df0.tar.gz | |
cleanup socketcall syscall interface to ease porting to sane(r) archs
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);  } | 
