summaryrefslogtreecommitdiff
path: root/libc/string/strerror.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/string/strerror.c')
-rw-r--r--libc/string/strerror.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libc/string/strerror.c b/libc/string/strerror.c
index a2f1f4833..1b5cb3ff2 100644
--- a/libc/string/strerror.c
+++ b/libc/string/strerror.c
@@ -9,13 +9,15 @@
#include <string.h>
#include "_syserrmsg.h"
-char attribute_hidden *__strerror(int errnum)
+libc_hidden_proto(strerror)
+libc_hidden_proto(__xpg_strerror_r)
+
+char *strerror(int errnum)
{
static char buf[_STRERROR_BUFSIZE];
- __xpg_strerror_r_internal(errnum, buf, sizeof(buf));
+ __xpg_strerror_r(errnum, buf, sizeof(buf));
return buf;
}
-
-strong_alias(__strerror,strerror)
+libc_hidden_def(strerror)