aboutsummaryrefslogtreecommitdiff
path: root/newlib/libm
diff options
context:
space:
mode:
authorRanjith Kumaran <ranjith@cygnus.com>2000-02-22 19:44:37 +0000
committerRanjith Kumaran <ranjith@cygnus.com>2000-02-22 19:44:37 +0000
commitcd641b2d557aa8df60313eae826b0b3dd9b73f32 (patch)
treecdf1adb459ba845446c71dac0f9930e5bb990809 /newlib/libm
parent196bbedaa7e91c6fbe2f4db9247038a3519b84ab (diff)
downloadnewlib-cd641b2d557aa8df60313eae826b0b3dd9b73f32.zip
newlib-cd641b2d557aa8df60313eae826b0b3dd9b73f32.tar.gz
newlib-cd641b2d557aa8df60313eae826b0b3dd9b73f32.tar.bz2
Tue Feb 22 14:37:00 2000 Ran Cabell <rcabell@norfolk.infi.net>
* libm/mathfp/sf_exp.c: Corrected _DOUBLE_IS_32_BITS to be _DOUBLE_IS_32BITS.
Diffstat (limited to 'newlib/libm')
-rw-r--r--newlib/libm/mathfp/sf_exp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libm/mathfp/sf_exp.c b/newlib/libm/mathfp/sf_exp.c
index 45d9c31..e37fac5 100644
--- a/newlib/libm/mathfp/sf_exp.c
+++ b/newlib/libm/mathfp/sf_exp.c
@@ -82,11 +82,11 @@ _DEFUN (expf, (float),
return (ldexpf (R, N));
}
-#ifdef _DOUBLE_IS_32_BITS
+#ifdef _DOUBLE_IS_32BITS
double exp (double x)
{
return (double) expf ((float) x);
}
-#endif /* _DOUBLE_IS_32_BITS */
+#endif /* _DOUBLE_IS_32BITS */