master
 1/* <iso646.h> for the Aro C compiler */
 2
 3#pragma once
 4
 5#define and    &&
 6#define and_eq &=
 7#define bitand &
 8#define bitor  |
 9#define compl  ~
10#define not    !
11#define not_eq !=
12#define or     ||
13#define or_eq  |=
14#define xor    ^
15#define xor_eq ^=