]> git.sur5r.net Git - cc65/blob - include/iso646.h
This commit was generated by cvs2svn to compensate for changes in r2,
[cc65] / include / iso646.h
1 /*
2  * iso646.h
3  *
4  * Ullrich von Bassewitz, 11.12.1998
5  *
6  */
7
8
9
10 #ifndef _ISO646_H
11 #define _ISO646_H
12
13
14
15 /* Operator tokens */
16 #define and     &&
17 #define and_eq  &=
18 #define bitand  &
19 #define bitor   |
20 #define compl   ~
21 #define not     !
22 #define not_eq  !=
23 #define or      ||
24 #define or_eq   |=
25 #define xor     ^
26 #define xor_eq  ^=
27
28
29
30 /* End of iso646.h */
31 #endif
32
33
34