aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-04-28 19:37:53 +0000
committerRichard M. Stallman <[email protected]>1994-04-28 19:37:53 +0000
commit3c60251582fc71ab7bc4ec1dd24642250e0c6287 (patch)
treeb188785d167fb329082c38683fd7913268c9fa8b /src/floatfns.c
parenta1300baaf8c3bdf5ba485439ab604678cd04210f (diff)
(logb): Test HPUX, not hpux.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 145cae0474..10767e271f 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -76,9 +76,9 @@ Lisp_Object Qarith_error;
#include <math.h>
/* This declaration is omitted on some systems, like Ultrix. */
-#if !defined (hpux) && defined (HAVE_LOGB)
+#if !defined (HPUX) && defined (HAVE_LOGB)
extern double logb ();
-#endif /* !hpux && HAVE_LOGB */
+#endif /* not HPUX and HAVE_LOGB */
#ifndef MSDOS
#if defined(DOMAIN) && defined(SING) && defined(OVERFLOW)