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