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:
parent
196bbedaa7
commit
cd641b2d55
2 changed files with 7 additions and 2 deletions
|
@ -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>
|
Mon Feb 21 11:43:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
|
||||||
|
|
||||||
* libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT
|
* libc/stdio/vfprintf.c (VFPRINTF): Added CHECK_INIT
|
||||||
|
|
|
@ -82,11 +82,11 @@ _DEFUN (expf, (float),
|
||||||
return (ldexpf (R, N));
|
return (ldexpf (R, N));
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef _DOUBLE_IS_32_BITS
|
#ifdef _DOUBLE_IS_32BITS
|
||||||
|
|
||||||
double exp (double x)
|
double exp (double x)
|
||||||
{
|
{
|
||||||
return (double) expf ((float) x);
|
return (double) expf ((float) x);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* _DOUBLE_IS_32_BITS */
|
#endif /* _DOUBLE_IS_32BITS */
|
||||||
|
|
Loading…
Add table
Reference in a new issue