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