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