aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>1998-09-09 01:35:38 +0000
committerAndreas Schwab <schwab@suse.de>1998-09-09 01:35:38 +0000
commit2aa236b1f546cc7afdc75d9250babac8c6e4bc66 (patch)
tree07a080889109ffe1c6bf9c822c91d7dc13f9672d
parentdc27836e6bf406c89f2e567a13a194294e9e3875 (diff)
downloadglibc-2aa236b1f546cc7afdc75d9250babac8c6e4bc66.zip
glibc-2aa236b1f546cc7afdc75d9250babac8c6e4bc66.tar.gz
glibc-2aa236b1f546cc7afdc75d9250babac8c6e4bc66.tar.bz2
* sysdeps/m68k/fpu/bits/mathinline.h (isinf): Avoid conflict with
C9x macro. Wed Sep 9 10:34:06 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/m68k/fpu/bits/mathinline.h (isinf): Avoid conflict with C9x macro.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/m68k/fpu/bits/mathinline.h2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 361f8cf..fcd7bed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Sep 9 10:34:06 1998 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
+
+ * sysdeps/m68k/fpu/bits/mathinline.h (isinf): Avoid conflict with
+ C9x macro.
+
1998-09-08 Ulrich Drepper <drepper@cygnus.com>
* csu/initfini.c: Don't define __gmon_start__ if WEAK_GMON_START is
diff --git a/sysdeps/m68k/fpu/bits/mathinline.h b/sysdeps/m68k/fpu/bits/mathinline.h
index e5eb591..b1e2a75 100644
--- a/sysdeps/m68k/fpu/bits/mathinline.h
+++ b/sysdeps/m68k/fpu/bits/mathinline.h
@@ -442,7 +442,9 @@ __inline_forward(double,frexp, (double __value, int *__expptr),
__inline_forward_c(double,floor, (double __x), (__x))
__inline_forward_c(double,ceil, (double __x), (__x))
# ifdef __USE_MISC
+# ifndef __USE_ISOC9X /* Conflict with macro of same name. */
__inline_forward_c(int,isinf, (double __value), (__value))
+# endif
__inline_forward_c(int,finite, (double __value), (__value))
__inline_forward_c(double,scalbn, (double __x, int __n), (__x, __n))
# endif