socketpair.c 178 B

1234567
  1. #include <sys/socket.h>
  2. #include "syscall.h"
  3. int socketpair(int domain, int type, int protocol, int fd[2])
  4. {
  5. return socketcall(socketpair, domain, type, protocol, fd, 0, 0);
  6. }