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