shithub: riscv

ref: 5c6357de8bda7c5fe0a7fa4ab31b365a9ae8e6fb
dir: /sys/src/ape/lib/ap/stdio/perror.c/

View raw version
/*
 * 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);
}