]> pd.if.org Git - pdclib/blob - includes/iso646.h
Re-import from Subversion.
[pdclib] / includes / iso646.h
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * ----------------------------------------------------------------------------
7  * Alternative spellings
8  * ----------------------------------------------------------------------------
9  * This header is part of a freestanding implementation
10  * --------------------------------------------------------------------------*/
11
12 #ifndef _ISO646_H
13 #define _ISO646_H _ISO646_H
14
15 /* ----------------------------------------------------------------------------
16  * DEFINES
17  * --------------------------------------------------------------------------*/
18
19 #define and &&
20 #define and_eq &=
21 #define bitand &
22 #define bitor |
23 #define compl ~
24 #define not !
25 #define not_eq !=
26 #define or ||
27 #define or_eq |=
28 #define xor ^
29 #define xor_eq ^=
30
31 #endif /* _ISO646_H */