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