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