1989-05-30 13:34:25 +00:00
|
|
|
/*
|
|
|
|
* perror.c - print an error message on the standard error output
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-05-30 13:34:25 +00:00
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
void
|
|
|
|
perror(const char *s)
|
|
|
|
{
|
1990-05-21 10:20:15 +00:00
|
|
|
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
|
|
|
}
|