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