From: Rich Felker Date: Sat, 30 Jul 2011 10:11:16 +0000 (-0400) Subject: eliminate dependence of perror on printf X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=7683fceedebd98dda19b1a379b92406b64ce7f92;p=musl eliminate dependence of perror on printf --- diff --git a/src/stdio/perror.c b/src/stdio/perror.c index e4637c8a..4349ac5e 100644 --- a/src/stdio/perror.c +++ b/src/stdio/perror.c @@ -5,23 +5,18 @@ void perror(const char *msg) { -#if 1 - if (msg) fprintf(stderr, "%s: %m\n", msg, strerror(errno)); - else fprintf(stderr, "%m\n"); -#else FILE *f = stderr; char *errstr = strerror(errno); FLOCK(f); if (msg) { - __fwritex(msg, strlen(msg), f); - __putc_unlocked(':', f); - __putc_unlocked(' ', f); + fwrite(msg, strlen(msg), 1, f); + fputc(':', f); + fputc(' ', f); } - __fwritex(errstr, strlen(errstr), f); - __putc_unlocked('\n', f); + fwrite(errstr, strlen(errstr), 1, f); + fputc('\n', f); FUNLOCK(f); -#endif }