summaryrefslogtreecommitdiff
path: root/lib/libc/socket/socket.c
blob: 34b5d67b86d94ff1a099f4a3f0e38a7e81b78363 (plain)
1
2
3
4
5
6
#include <syscall.h>

int socket(int domain, int type, int protocol)
{
	return syscall(socket, domain, type, protocol);
}