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