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