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