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