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