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