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