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