blob: 77ebdd30c4dd4996aec3f45ceb559e0edbb3aa83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|