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