shithub: front

ref: a9d09ee1f1eccc3d8cef3f6fe593f96bec8f855f
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);
}