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