Files
c64-demo-cpp/oscar64/include/iso646.h
T
2026-07-18 20:34:55 +02:00

17 lines
280 B
C

#ifndef ISO646_H
#define ISO646_H
#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