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