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