fix x86_64 user.h (previously was just a copy of i386)
[musl] / src / network / socket.c
1 #include <sys/socket.h>
2 #include "syscall.h"
3
4 int socket(int domain, int type, int protocol)
5 {
6         return socketcall(socket, domain, type, protocol, 0, 0, 0);
7 }