blob: 8b7dda8cbe380c367756699475b048cccaa869fd [file] [log] [blame]
Adam Barth57eacf52020-11-04 00:38:09 +00001#ifndef SYSROOT_ISO646_H_
2#define SYSROOT_ISO646_H_
Doug Horn1427b6a2018-12-11 13:19:16 -08003
4#ifndef __cplusplus
5
Adam Barth57eacf52020-11-04 00:38:09 +00006#define and &&
Doug Horn1427b6a2018-12-11 13:19:16 -08007#define and_eq &=
Adam Barth57eacf52020-11-04 00:38:09 +00008#define bitand &
Doug Horn1427b6a2018-12-11 13:19:16 -08009#define bitor |
Adam Barth57eacf52020-11-04 00:38:09 +000010#define compl ~
11#define not !
Doug Horn1427b6a2018-12-11 13:19:16 -080012#define not_eq !=
13#define or ||
14#define or_eq |=
15#define xor ^
16#define xor_eq ^=
17
18#endif
Adam Barth57eacf52020-11-04 00:38:09 +000019
20#endif // SYSROOT_ISO646_H_