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