aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
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
commita2ffe12b49e82c9d6f8158aaa34a30cdb3129011 (patch)
treeeac335ba7b5521abd364ded0a8a388bdbd065ba8 /sysdeps
parent55bdcfe5d94794892fc1aa8f1504861e50c1ecdc (diff)
downloadglibc-a2ffe12b49e82c9d6f8158aaa34a30cdb3129011.tar
glibc-a2ffe12b49e82c9d6f8158aaa34a30cdb3129011.tar.gz
glibc-a2ffe12b49e82c9d6f8158aaa34a30cdb3129011.tar.bz2
glibc-a2ffe12b49e82c9d6f8158aaa34a30cdb3129011.zip
* sysdeps/m68k/fpu/bits/mathinline.h (isinf): Avoid conflict with
C9x macro.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/m68k/fpu/bits/mathinline.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/m68k/fpu/bits/mathinline.h b/sysdeps/m68k/fpu/bits/mathinline.h
index e5eb591e30..b1e2a75f1b 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