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