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