From: Ulrich Drepper Date: Wed, 28 Apr 1999 15:29:01 +0000 (+0000) Subject: Surround strong_alias and weak_alias with ifdef _LIBC. X-Git-Tag: cvs/glibc-2_1_1~112 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=914333fff9a6cb9ee5b8e88f6bf5325fbad37f9f;p=thirdparty%2Fglibc.git Surround strong_alias and weak_alias with ifdef _LIBC. --- diff --git a/stdlib/strtoull.c b/stdlib/strtoull.c index ef808298d80..80ccf91c5e7 100644 --- a/stdlib/strtoull.c +++ b/stdlib/strtoull.c @@ -21,5 +21,7 @@ #include +#ifdef _LIBC strong_alias (__strtoull_internal, __strtouq_internal) weak_alias (strtoull, strtouq) +#endif