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