musl/src/network/socket.c

10 lines
232 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#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);
}