blob: 24d93b589286f7f6715b7ac5acfd15158ec39fac (
plain)
1
2
3
4
5
6
7
8
|
#include <syscall.h> // for __syscall_4, syscall
int socketpair(int domain, int type, int protocol, int socket_vector[2])
{
return syscall(socketpair, domain, type, protocol, socket_vector);
}
|