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