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