diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-28 19:37:53 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-28 19:37:53 +0000 |
commit | 3c60251582fc71ab7bc4ec1dd24642250e0c6287 (patch) | |
tree | b188785d167fb329082c38683fd7913268c9fa8b /src/floatfns.c | |
parent | a1300baaf8c3bdf5ba485439ab604678cd04210f (diff) | |
download | emacs-3c60251582fc71ab7bc4ec1dd24642250e0c6287.tar.gz |
(logb): Test HPUX, not hpux.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r-- | src/floatfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 145cae04741..10767e271fd 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) |