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