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