ref: 1fd62ed230291645dba5f31ce26c38b71b9b0dbe 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; }