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