shithub: scc

ref: 94f23734015424515144b54f0a9f9d6c9d2f34c2
dir: /src/libc/stdio/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);
}