ref: 82435c350a1d3530c87ea88ada68e984fc6b9b80
dir: /sys/src/ape/lib/ap/stdio/perror.c/
/* * pANS stdio -- perror */ #include "iolib.h" #include <errno.h> void perror(const char *s){ if(s!=NULL && *s != '\0') fputs(s, stderr), fputs(": ", stderr); fputs(strerror(errno), stderr); putc('\n', stderr); fflush(stderr); }