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