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