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