From 52f59d233045041f80f23ade310ea4671bf50358 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 14 Jun 1995 22:14:36 -0400 Subject: [PATCH] Do nothing if compiled as C++. From-SVN: r9955 --- gcc/ginclude/iso646.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gcc/ginclude/iso646.h b/gcc/ginclude/iso646.h index 60e7e60a0a3..77ebdd30c4d 100644 --- a/gcc/ginclude/iso646.h +++ b/gcc/ginclude/iso646.h @@ -1,5 +1,6 @@ /* Macros for C programs written in national variants of ISO 646. */ +#ifndef __cplusplus #define and && #define and_eq &= #define bitand & @@ -11,3 +12,4 @@ #define or_eq |= #define xor ^ #define xor_eq ^= +#endif -- 2.30.2