mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-11 16:08:13 +00:00
Don't declare logb if it is a macro.
This commit is contained in:
parent
3b91a4f4c9
commit
7a4720e25a
@ -73,9 +73,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) && !defined (logb)
|
||||
extern double logb ();
|
||||
#endif /* not HPUX and HAVE_LOGB */
|
||||
#endif /* not HPUX and HAVE_LOGB and no logb macro */
|
||||
|
||||
#if defined(DOMAIN) && defined(SING) && defined(OVERFLOW)
|
||||
/* If those are defined, then this is probably a `matherr' machine. */
|
||||
|
Loading…
Reference in New Issue
Block a user