Files
third_party_musl2/include/iso646.h
T
Caoruihong a7a91cd947 chore: isolate modifications into the porting folder
isolate changes, keep orignal musl sources clean.

Signed-off-by: Caoruihong <crh.cao@huawei.com>
Change-Id: Id7f3a5109771f93d397e30febba36e09ddaf4f36
2021-06-11 11:51:50 +08:00

21 lines
267 B
C

#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