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