aboutsummaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-04-28 15:29:01 +0000
committerUlrich Drepper <drepper@redhat.com>1999-04-28 15:29:01 +0000
commit914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f (patch)
tree2dd9d3d643722591bccd3e71ca8cfd382996f743 /stdlib
parentaf275feae5fb9f2130589ed64eaf5984d6f76835 (diff)
downloadglibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.zip
glibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.tar.gz
glibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.tar.bz2
Surround strong_alias and weak_alias with ifdef _LIBC.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/strtoull.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stdlib/strtoull.c b/stdlib/strtoull.c
index ef80829..80ccf91 100644
--- a/stdlib/strtoull.c
+++ b/stdlib/strtoull.c
@@ -21,5 +21,7 @@
#include <strtoul.c>
+#ifdef _LIBC
strong_alias (__strtoull_internal, __strtouq_internal)
weak_alias (strtoull, strtouq)
+#endif