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