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