8sa1-gcc/gcc/ginclude/iso646.h
Richard Kenner 52f59d2330 Do nothing if compiled as C++.
From-SVN: r9955
1995-06-14 22:14:36 -04:00

16 lines
275 B
C

/* Macros for C programs written in national variants of ISO 646. */
#ifndef __cplusplus
#define and &&
#define and_eq &=
#define bitand &
#define bitor |
#define compl ~
#define not !
#define not_eq !=
#define or ||
#define or_eq |=
#define xor ^
#define xor_eq ^=
#endif