ref: 8ea31ae7b21e9f0c8991b2b861bc51ea3d67c3cd 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; }