socket.c 158 B

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