shutdown.c 117 B

1234567891011
  1. #include <sys/types.h>
  2. #include <unistd.h>
  3. int
  4. shutdown(int fd, int how)
  5. {
  6. if(how == 2)
  7. close(fd);
  8. return 0;
  9. }