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