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