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