shithub: scc

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