Use fputs instead of printf in perror.c
This commit is contained in:
parent
da8f9124ff
commit
24c9be9777
|
@ -10,7 +10,10 @@
|
||||||
void
|
void
|
||||||
perror(const char *s)
|
perror(const char *s)
|
||||||
{
|
{
|
||||||
if (s && *s)
|
if (s && *s) {
|
||||||
(void) fprintf(stderr,"%s: ", s);
|
(void) fputs(s, stderr);
|
||||||
(void) fprintf(stderr,"%s\n", strerror(errno));
|
(void) fputs(": ", stderr);
|
||||||
|
}
|
||||||
|
(void) fputs(strerror(errno), stderr);
|
||||||
|
(void) fputs("\n", stderr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue