blob: 60e7e60a0a35c749bcf8f0b450b67e69f6594682 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Macros for C programs written in national variants of ISO 646. */
#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 ^=
|