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