#ifndef _ISO646_H_ #define _ISO646_H_ /* Copyright © 1995-2001, The AROS Development Team. All rights reserved. $Id: iso646.h 14341 2002-04-29 09:39:45Z iaint $ Alternate spellings. This is designed to be used by people who use languages that may not support the standard C symbols. See ISO C Standard Sect 7.9 */ #ifndef __cplusplus #define and && #define and_eq &= #define bitand & #define bitor | #define compl ~ #define not ! #define not_eq != #define or || #define or_eq |= #define xor ^ #define xor_eq ^= #endif #endif /* _ISO646_H_ */