/* KAI header: ISO646.h alternative spellings, from c99 standard Sec 7.9 */ /** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef _ISO646_H #define _ISO646_H #ifdef __cplusplus extern "C" { #endif #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 ^= #ifdef __cplusplus } #endif #endif