about summary refs log tree commit diff
path: root/sysdeps/ieee754/dbl-64/e_j0.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-10-25 22:17:16 +0000
committerUlrich Drepper <drepper@redhat.com>2000-10-25 22:17:16 +0000
commit106599818f03d43df1cf58e236bd3969e4691fa5 (patch)
treee8e8c8de035fe5bb92e014f23ac5fa983b49dfd9 /sysdeps/ieee754/dbl-64/e_j0.c
parent6a39d02719ff34c9f51dd3049add71086572da5a (diff)
downloadglibc-106599818f03d43df1cf58e236bd3969e4691fa5.tar.gz
glibc-106599818f03d43df1cf58e236bd3969e4691fa5.tar.xz
glibc-106599818f03d43df1cf58e236bd3969e4691fa5.zip
Update.
2000-10-25  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/ieee754/dbl-64/e_jn.c: Use __ieee754_sqrt instead of __sqrt.
	* sysdeps/ieee754/dbl-64/e_j1.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_j0.c: Likewise.
	* sysdeps/ieee754/flt-32/e_j1f.c: Likewise.
	* sysdeps/ieee754/flt-32/e_j0f.c: Likewise.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/e_j0.c')
-rw-r--r--sysdeps/ieee754/dbl-64/e_j0.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/dbl-64/e_j0.c b/sysdeps/ieee754/dbl-64/e_j0.c
index 55e8294bb9..00caf3f0d3 100644
--- a/sysdeps/ieee754/dbl-64/e_j0.c
+++ b/sysdeps/ieee754/dbl-64/e_j0.c
@@ -124,10 +124,10 @@ static double zero = 0.0;
 	 * j0(x) = 1/sqrt(pi) * (P(0,x)*cc - Q(0,x)*ss) / sqrt(x)
 	 * y0(x) = 1/sqrt(pi) * (P(0,x)*ss + Q(0,x)*cc) / sqrt(x)
 	 */
-		if(ix>0x48000000) z = (invsqrtpi*cc)/__sqrt(x);
+		if(ix>0x48000000) z = (invsqrtpi*cc)/__ieee754_sqrt(x);
 		else {
 		    u = pzero(x); v = qzero(x);
-		    z = invsqrtpi*(u*cc-v*ss)/__sqrt(x);
+		    z = invsqrtpi*(u*cc-v*ss)/__ieee754_sqrt(x);
 		}
 		return z;
 	}
@@ -215,10 +215,10 @@ V[]  =  {1.27304834834123699328e-02, /* 0x3F8A1270, 0x91C9C71A */
                     if ((s*c)<zero) cc = z/ss;
                     else            ss = z/cc;
                 }
-                if(ix>0x48000000) z = (invsqrtpi*ss)/__sqrt(x);
+                if(ix>0x48000000) z = (invsqrtpi*ss)/__ieee754_sqrt(x);
                 else {
                     u = pzero(x); v = qzero(x);
-                    z = invsqrtpi*(u*ss+v*cc)/__sqrt(x);
+                    z = invsqrtpi*(u*ss+v*cc)/__ieee754_sqrt(x);
                 }
                 return z;
 	}