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