diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-04-28 15:29:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-04-28 15:29:01 +0000 |
commit | 914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f (patch) | |
tree | 2dd9d3d643722591bccd3e71ca8cfd382996f743 | |
parent | af275feae5fb9f2130589ed64eaf5984d6f76835 (diff) | |
download | glibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.tar.gz glibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.tar.xz glibc-914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f.zip |
Surround strong_alias and weak_alias with ifdef _LIBC.
-rw-r--r-- | stdlib/strtoull.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stdlib/strtoull.c b/stdlib/strtoull.c index ef808298d8..80ccf91c5e 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 |