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