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