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