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