Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRanjith Kumaran <ranjith@cygnus.com>2000-02-22 22:44:37 +0300
committerRanjith Kumaran <ranjith@cygnus.com>2000-02-22 22:44:37 +0300
commitcd641b2d557aa8df60313eae826b0b3dd9b73f32 (patch)
treecdf1adb459ba845446c71dac0f9930e5bb990809 /newlib/libm
parent196bbedaa7e91c6fbe2f4db9247038a3519b84ab (diff)
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 45d9c31fc..e37fac58b 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 */