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