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.
This commit is contained in:
Ranjith Kumaran 2000-02-22 19:44:37 +00:00
parent 196bbedaa7
commit cd641b2d55
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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.
Mon Feb 21 11:43:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
* libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT

View File

@ -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 */