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