whoops - forgot to commit header files
[reactos.git] / posix / include / iso646.h
1 /*
2 * iso646.h
3 *
4 * alternative spellings. Based on the Single UNIX(r) Specification,
5 * Version 2
6 *
7 * This file is part of the ReactOS Operating System.
8 *
9 * Contributors:
10 * Created by KJK::Hyperion <noog@libero.it>
11 *
12 * THIS SOFTWARE IS NOT COPYRIGHTED
13 *
14 * This source code is offered for use in the public domain. You may
15 * use, modify or distribute it freely.
16 *
17 * This code is distributed in the hope that it will be useful but
18 * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
19 * DISCLAMED. This includes but is not limited to warranties of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
21 *
22 */
23 #ifndef __ISO646_H_INCLUDED__
24 #define __ISO646_H_INCLUDED__
25
26 /* INCLUDES */
27 #ifdef __PSXDLL__
28
29 /* headers for internal usage by psxdll.dll and ReactOS */
30
31 #else /* ! __PSXDLL__ */
32
33 /* standard POSIX headers */
34
35 #endif
36
37 /* OBJECTS */
38
39 /* TYPES */
40
41 /* CONSTANTS */
42
43 /* PROTOTYPES */
44
45 /* MACROS */
46 #define and &&
47 #define and_eq &=
48 #define bitand &
49 #define bitor |
50 #define compl ~
51 #define not !
52 #define not_eq !=
53 #define or ||
54 #define or_eq |=
55 #define xor ^
56 #define xor_eq ^=
57
58 #endif /* __ISO646_H_INCLUDED__ */
59
60 /* EOF */
61