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