mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-30 02:02:38 -07:00
Don't declare logb if it is a macro.
This commit is contained in:
parent
3b91a4f4c9
commit
7a4720e25a
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue