1995-02-21 08:15:01 -05:00
|
|
|
/* Macros for C programs written in national variants of ISO 646. */
|
|
|
|
|
1995-06-14 22:14:36 -04:00
|
|
|
#ifndef __cplusplus
|
1995-02-21 08:15:01 -05:00
|
|
|
#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 ^=
|
1995-06-14 22:14:36 -04:00
|
|
|
#endif
|