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