summaryrefslogtreecommitdiffstats
path: root/libc/stdio/perror.c
diff options
context:
space:
mode:
author"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-26 03:57:14 +0000
committer"Steven J. Hill" <sjhill@realitydiluted.com>2006-02-26 03:57:14 +0000
commit9921832fa13cef31006cfa69bc5574636c36ac0f (patch)
tree4faa87a1fbc9842126d3bdc61c0d64285ebcc849 /libc/stdio/perror.c
parent292e2d7a707449b531422d37cec4608d304da24e (diff)
downloaduClibc-alpine-9921832fa13cef31006cfa69bc5574636c36ac0f.tar.bz2
uClibc-alpine-9921832fa13cef31006cfa69bc5574636c36ac0f.tar.xz
Merge from trunk.
Diffstat (limited to 'libc/stdio/perror.c')
-rw-r--r--libc/stdio/perror.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/libc/stdio/perror.c b/libc/stdio/perror.c
index 9edcf4efb..2c3cbbdb5 100644
--- a/libc/stdio/perror.c
+++ b/libc/stdio/perror.c
@@ -7,11 +7,16 @@
#include "_stdio.h"
+libc_hidden_proto(fprintf)
+libc_hidden_proto(__glibc_strerror_r)
+libc_hidden_proto(stderr)
+
#ifdef __UCLIBC_MJN3_ONLY__
#warning CONSIDER: Increase buffer size for error message (non-%m case)?
#endif
-void attribute_hidden __perror(register const char *s)
+libc_hidden_proto(perror)
+void perror(register const char *s)
{
/* If the program is calling perror, it's a safe bet that printf and
* friends are used as well. It is also possible that the calling
@@ -30,8 +35,8 @@ void attribute_hidden __perror(register const char *s)
{
char buf[64];
fprintf(stderr, "%s%s%s\n", s, sep,
- __glibc_strerror_r_internal(errno, buf, sizeof(buf)));
+ __glibc_strerror_r(errno, buf, sizeof(buf)));
}
#endif
}
-strong_alias(__perror,perror)
+libc_hidden_def(perror)