From cd641b2d557aa8df60313eae826b0b3dd9b73f32 Mon Sep 17 00:00:00 2001 From: Ranjith Kumaran Date: Tue, 22 Feb 2000 19:44:37 +0000 Subject: Tue Feb 22 14:37:00 2000 Ran Cabell * libm/mathfp/sf_exp.c: Corrected _DOUBLE_IS_32_BITS to be _DOUBLE_IS_32BITS. --- newlib/libm/mathfp/sf_exp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newlib/libm/mathfp') 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 */ -- cgit v1.2.3