ack/lang/cem/libcc.ansi/stdio/perror.c
1994-06-24 14:02:31 +00:00

20 lines
320 B
C

/*
* perror.c - print an error message on the standard error output
*/
/* $Id$ */
#include <errno.h>
#include <stdio.h>
#include <string.h>
void
perror(const char *s)
{
if (s && *s) {
(void) fputs(s, stderr);
(void) fputs(": ", stderr);
}
(void) fputs(strerror(errno), stderr);
(void) fputs("\n", stderr);
}