shutdown.c 131 B

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