ack/lang/cem/libcc.ansi/stdio/perror.c

20 lines
324 B
C
Raw Normal View History

1989-05-30 13:34:25 +00:00
/*
* perror.c - print an error message on the standard error output
*/
/* $Header$ */
#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);
1989-05-30 13:34:25 +00:00
}