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