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