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