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