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