ref: 0e8db6d34eea3f58ea6ca3bfedcb2e004c4d74dd 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; }