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