From: Richard Kenner Date: Thu, 15 Jun 1995 02:14:36 +0000 (-0400) Subject: Do nothing if compiled as C++. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52f59d233045041f80f23ade310ea4671bf50358;p=gcc.git Do nothing if compiled as C++. From-SVN: r9955 --- 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