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