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