ORCA-C/ORCACDefs/iso646.h

23 lines
444 B
C

/****************************************************************
*
* iso646.h - alternative operator spellings
*
****************************************************************/
#ifndef __iso646__
#define __iso646__
#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