shithub: scc

ref: 57a4ce1ffd76c45dcf107415a5ee4ea33ed54c66
dir: /lib/c/perror.c/

View raw version

#include <errno.h>
#include <stdio.h>
#include <string.h>
#undef perror

void
perror(const char *msg)
{
	if (msg && *msg) {
		fputs(msg, stderr);
		putc(':', stderr);
		putc(' ', stderr);
	}
	fputs(strerror(errno), stderr);
	putc('\n', stderr);
}