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