shithub: scc

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