/* iso646.h Alternative spellings - c99 7.9 */ /* * C/C++ Run Time Library - Version 24.0 * * Copyright (c) 2002, 2016 by Embarcadero Technologies, Inc. * All Rights Reserved. * */ #ifndef __ISO646_H #define __ISO646_H #if !defined(__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 */