diff options
| author | Richard M. Stallman | 1994-04-28 19:37:53 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-28 19:37:53 +0000 |
| commit | 3c60251582fc71ab7bc4ec1dd24642250e0c6287 (patch) | |
| tree | b188785d167fb329082c38683fd7913268c9fa8b /src/floatfns.c | |
| parent | a1300baaf8c3bdf5ba485439ab604678cd04210f (diff) | |
| download | emacs-3c60251582fc71ab7bc4ec1dd24642250e0c6287.tar.gz emacs-3c60251582fc71ab7bc4ec1dd24642250e0c6287.zip | |
(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; | |||
| 76 | #include <math.h> | 76 | #include <math.h> |
| 77 | 77 | ||
| 78 | /* This declaration is omitted on some systems, like Ultrix. */ | 78 | /* This declaration is omitted on some systems, like Ultrix. */ |
| 79 | #if !defined (hpux) && defined (HAVE_LOGB) | 79 | #if !defined (HPUX) && defined (HAVE_LOGB) |
| 80 | extern double logb (); | 80 | extern double logb (); |
| 81 | #endif /* !hpux && HAVE_LOGB */ | 81 | #endif /* not HPUX and HAVE_LOGB */ |
| 82 | 82 | ||
| 83 | #ifndef MSDOS | 83 | #ifndef MSDOS |
| 84 | #if defined(DOMAIN) && defined(SING) && defined(OVERFLOW) | 84 | #if defined(DOMAIN) && defined(SING) && defined(OVERFLOW) |