freestanding-headers/iso646.h

17 lines
224 B
C
Raw Normal View History

2022-03-02 20:18:08 +03:00
#ifndef _ISO646_H
#define _ISO646_H 1
2022-02-17 10:16:54 +03:00
#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