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