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