- Give PCI controllers lower unit numbers than legacy controllers.
[cake.git] / compiler / clib / include / iso646.h
blob3247b002c50e3851321ba75f9daea62cab40f000
1 #ifndef _ISO646_H_
2 #define _ISO646_H_
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 $Id$
8 Alternate spellings. This is designed to be used by people who use
9 languages that may not support the standard C symbols.
11 See ISO C Standard Sect 7.9
14 #ifndef __cplusplus
15 #define and &&
16 #define and_eq &=
17 #define bitand &
18 #define bitor |
19 #define compl ~
20 #define not !
21 #define not_eq !=
22 #define or ||
23 #define or_eq |=
24 #define xor ^
25 #define xor_eq ^=
26 #endif
28 #endif /* _ISO646_H_ */