1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
23 lines
288 B
C
23 lines
288 B
C
// Copied from musl
|
|
|
|
#ifndef _ISO646_H
|
|
#define _ISO646_H
|
|
|
|
#ifndef __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
|