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