diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-16 23:50:43 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:26 +0200 |
commit | 916229f02ca6464435146fc86f9cb57b0ac47d8e (patch) | |
tree | 467cdaa1cf5dc51fbdf6132bd2385750b3e7d5a0 /libc/string | |
parent | 6763a89427834d2e8b929006cabfc0e947bb68fa (diff) |
__xpg_strerror_r.c, {ge,se}trlimit.c: use strong_alias_untyped
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/__xpg_strerror_r.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libc/string/__xpg_strerror_r.c b/libc/string/__xpg_strerror_r.c index fb4d44004..5979b1e37 100644 --- a/libc/string/__xpg_strerror_r.c +++ b/libc/string/__xpg_strerror_r.c @@ -5,17 +5,11 @@ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ -/* Make sure we get proper strerror_r() prototype */ -#define strerror_r _hidestrerror_r - #include <features.h> #include <errno.h> #include <string.h> #include "_syserrmsg.h" -#undef strerror_r - - #ifdef __UCLIBC_HAS_ERRNO_MESSAGES__ extern const char _string_syserrmsgs[] attribute_hidden; @@ -273,4 +267,4 @@ int __xpg_strerror_r(int errnum, char *strerrbuf, size_t buflen) #endif /* __UCLIBC_HAS_ERRNO_MESSAGES__ */ libc_hidden_def(__xpg_strerror_r) -weak_alias(__xpg_strerror_r, strerror_r) +strong_alias_untyped(__xpg_strerror_r, strerror_r) |