summaryrefslogtreecommitdiff
path: root/src/network/socket.c
blob: afaeb411bab866ff4a9ceea00001c210d0e42c0a (plain) (blame)
1
2
3
4
5
6
7
8
9
#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);
}