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