aboutsummaryrefslogtreecommitdiffstats
path: root/src/floatfns.c
diff options
context:
space:
mode:
authorRichard M. Stallman1993-05-25 20:41:49 +0000
committerRichard M. Stallman1993-05-25 20:41:49 +0000
commitbbc4efeba0e1d1088f904648a935419f3dff4c14 (patch)
treec56bfc140bd6ed93cf0d2d08b1d0615ae2d3cc3a /src/floatfns.c
parent3d3bd052687e86c314582b7c9fda1125a57d1c87 (diff)
downloademacs-bbc4efeba0e1d1088f904648a935419f3dff4c14.tar.gz
emacs-bbc4efeba0e1d1088f904648a935419f3dff4c14.zip
(logb): Don't declare if hpux.
Diffstat (limited to 'src/floatfns.c')
-rw-r--r--src/floatfns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index 999d0a86399..1b6487afae8 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -55,8 +55,10 @@ Lisp_Object Qarith_error;
55 55
56#include <math.h> 56#include <math.h>
57 57
58#ifndef hpux
58/* These declarations are omitted on some systems, like Ultrix. */ 59/* These declarations are omitted on some systems, like Ultrix. */
59extern double logb (); 60extern double logb ();
61#endif
60 62
61#if defined(DOMAIN) && defined(SING) && defined(OVERFLOW) 63#if defined(DOMAIN) && defined(SING) && defined(OVERFLOW)
62 /* If those are defined, then this is probably a `matherr' machine. */ 64 /* If those are defined, then this is probably a `matherr' machine. */