1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- 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
This commit is contained in:
Olaf Barthel
2005-11-19 17:17:47 +00:00
parent 5578c6a39e
commit fe29857567

View File

@ -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);
}
}