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