diff options
author | Ranjith Kumaran <ranjith@cygnus.com> | 2000-02-22 19:44:37 +0000 |
---|---|---|
committer | Ranjith Kumaran <ranjith@cygnus.com> | 2000-02-22 19:44:37 +0000 |
commit | cd641b2d557aa8df60313eae826b0b3dd9b73f32 (patch) | |
tree | cdf1adb459ba845446c71dac0f9930e5bb990809 /newlib/libm | |
parent | 196bbedaa7e91c6fbe2f4db9247038a3519b84ab (diff) | |
download | newlib-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.c | 4 |
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 */ |