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