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