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