blob: 65a47fd974732e1ef536d0181fd195662c1dc6fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#include <sys/socket.h>
#include "syscall.h"
#include "socketcall.h"
int socketpair(int domain, int type, int protocol, int fd[2])
{
unsigned long args[] = { domain, type, protocol, (unsigned long)fd };
return syscall2(__NR_socketcall, SYS_SOCKETPAIR, (long)args);
}
|