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