From: Ulrich Drepper Date: Tue, 16 Jul 2002 00:35:21 +0000 (+0000) Subject: Add sqrtl alias. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=15212a91d9d9a8aa924791130e5214ac031a0385;p=thirdparty%2Fglibc.git Add sqrtl alias. --- diff --git a/sysdeps/powerpc/fpu/w_sqrt.c b/sysdeps/powerpc/fpu/w_sqrt.c index 968f45a0032..dcf2f01ff35 100644 --- a/sysdeps/powerpc/fpu/w_sqrt.c +++ b/sysdeps/powerpc/fpu/w_sqrt.c @@ -139,3 +139,8 @@ weak_alias (__sqrt, sqrt) /* Strictly, this is wrong, but the only places where _ieee754_sqrt is used will not pass in a negative result. */ strong_alias(__sqrt,__ieee754_sqrt) + +#ifdef NO_LONG_DOUBLE +weak_alias (__sqrt, __sqrtl) +weak_alias (__sqrt, sqrtl) +#endif