From fe298575671ef7f383abcc67e25e1a921ab8d523 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Sat, 19 Nov 2005 17:17:47 +0000 Subject: [PATCH] - Replaced the sqrt() call. git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15063 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/math_pow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/math_pow.c b/library/math_pow.c index 8581510..04991f4 100644 --- a/library/math_pow.c +++ b/library/math_pow.c @@ -1,5 +1,5 @@ /* - * $Id: math_pow.c,v 1.8 2005-11-19 17:11:22 obarthel Exp $ + * $Id: math_pow.c,v 1.9 2005-11-19 17:17:47 obarthel Exp $ * * :ts=4 * @@ -265,7 +265,7 @@ __pow(double x,double y) if(hy==0x40000000) return x*x; /* y is 2 */ if(hy==0x3fe00000) { /* y is 0.5 */ if(hx>=0) /* x >= +0 */ - return __ieee754_sqrt(x); + return sqrt(x); } }