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