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