diff options
Diffstat (limited to 'gnu/usr.bin/gcc/ginclude/iso646.h')
-rw-r--r-- | gnu/usr.bin/gcc/ginclude/iso646.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/usr.bin/gcc/ginclude/iso646.h b/gnu/usr.bin/gcc/ginclude/iso646.h new file mode 100644 index 00000000000..77ebdd30c4d --- /dev/null +++ b/gnu/usr.bin/gcc/ginclude/iso646.h @@ -0,0 +1,15 @@ +/* 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 |