]> pd.if.org Git - pdclib.old/blob - includes/iso646.h
Modify various POSIX platform files so you can build on top of glibc for testing
[pdclib.old] / includes / iso646.h
1 /* $Id$ */
2
3 /* 7.9 Alternative spellings <iso646.h>
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #ifndef _PDCLIB_ISO646_H
10 #define _PDCLIB_ISO646_H _PDCLIB_ISO646_H
11
12 #ifndef __cplusplus
13 #define and &&
14 #define and_eq &=
15 #define bitand &
16 #define bitor |
17 #define compl ~
18 #define not !
19 #define not_eq !=
20 #define or ||
21 #define or_eq |=
22 #define xor ^
23 #define xor_eq ^=
24 #endif
25
26 #endif
27