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