ORCA-C/ORCACDefs/iso646.h
Stephen Heumann 9d018cafe7 Add iso646.h, stdint.h, and inttypes.h headers.
These mostly comply with C99 and C11, with some exceptions noted in comments.
2017-10-21 20:40:41 -05:00

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