OSDN Git Service

Tue Feb 22 14:37:00 2000 Ran Cabell <rcabell@norfolk.infi.net>
authorranjith <ranjith>
Tue, 22 Feb 2000 19:44:37 +0000 (19:44 +0000)
committerranjith <ranjith>
Tue, 22 Feb 2000 19:44:37 +0000 (19:44 +0000)
        * libm/mathfp/sf_exp.c: Corrected _DOUBLE_IS_32_BITS to be
        _DOUBLE_IS_32BITS.

newlib/ChangeLog
newlib/libm/mathfp/sf_exp.c

index b4147c2..0ec30c5 100644 (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
index 45d9c31..e37fac5 100644 (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 */