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