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