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