ref: 2719003b36ef8fdd4723ccb5a8e12e4b10fe41ed dir: /sys/src/ape/lib/bsd/shutdown.c/
#include <sys/types.h> #include <unistd.h> int shutdown(int fd, int how) { if(how == 2) close(fd); return 0; }