summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-04-22 14:35:59 +0000
committerJim Meyering <jim@meyering.net>1999-04-22 14:35:59 +0000
commite7fa925898a047ad15363bf3451b8d4f7c9c9450 (patch)
tree3eab79051225bc34af8405bd6f73c10659b7c28b
parentb003c8fdfa52455b7e4e2fca83010255907a66d6 (diff)
downloadcoreutils-e7fa925898a047ad15363bf3451b8d4f7c9c9450.tar.xz
Guard strong_alias and weak_alias with #ifdef _LIBC.
-rw-r--r--lib/strtoull.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/strtoull.c b/lib/strtoull.c
index ec7b3f672..d6aa1f805 100644
--- a/lib/strtoull.c
+++ b/lib/strtoull.c
@@ -21,5 +21,7 @@
#include "strtoul.c"
+#ifdef _LIBC
strong_alias (__strtoull_internal, __strtouq_internal)
weak_alias (strtoull, strtouq)
+#endif