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