+Sun Feb 18 11:21:41 2007 Ben Pfaff <blp@gnu.org>
+
+ * alloc.h: Remove useless parentheses in #if "defined" operator.
+
+ * misc.h: Ditto.
+
Tue Feb 6 20:00:13 2007 Ben Pfaff <blp@gnu.org>
* misc.h [!HAVE_ISINF] (isinf): Define only if isinf is not
void *nmalloc (size_t n, size_t s);
/* alloca() wrapper functions. */
-#if defined (HAVE_ALLOCA) || defined (C_ALLOCA)
+#if defined HAVE_ALLOCA || defined C_ALLOCA
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
/* HUGE_VAL is traditionally defined as positive infinity, or
alternatively, DBL_MAX. */
-#if !HAVE_ISINF && !defined (isinf)
+#if !HAVE_ISINF && !defined isinf
#define isinf(X) (fabs (X) == HUGE_VAL)
#endif
/* A Not a Number is not equal to itself. */
-#if !HAVE_ISNAN && !defined (isnan)
+#if !HAVE_ISNAN && !defined isnan
#define isnan(X) ((X) != (X))
#endif
/* Finite numbers are not infinities or NaNs. */
-#if !HAVE_FINITE && !defined (finite)
+#if !HAVE_FINITE && !defined finite
#define finite(X) (!isinf (X) && !isnan (X))
#elif HAVE_IEEEFP_H
#include <ieeefp.h> /* Declares finite() under Solaris. */