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