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