From: Jim Meyering Date: Thu, 22 Apr 1999 14:35:59 +0000 (+0000) Subject: Guard strong_alias and weak_alias with #ifdef _LIBC. X-Git-Tag: cvs-readonly~7362 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=9322c07842dc4ccc2a9f2677855235e627e8d94b;p=gnulib.git Guard strong_alias and weak_alias with #ifdef _LIBC. --- 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