ref: 37e4ce0ea75ae0e9a71d773d7fc7f16fd3d64fe7 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; }