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