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