changeset 1810:a786258edc8e

Guard strong_alias and weak_alias with #ifdef _LIBC.
author Jim Meyering <jim@meyering.net>
date Thu, 22 Apr 1999 14:35:59 +0000
parents b3716cc1ebee
children 622b6f32612a
files lib/strtoull.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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