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

int socketpair(int domain, int type, int protocol, int socket_vector[2])
{
	return syscall(socketpair, domain, type, protocol, socket_vector);
}