Files
openharmony_kernel_liteos_m/kal/posix/include/iso646.h
caoruihong d3e54ea9aa Description: add posix api header files from musl
CommitID:70a1d0d4761c478b6b33c3eb29af254a445ada74
2021-01-22 16:32:15 +08:00

26 lines
355 B
C

#ifndef _ISO646_H
#define _ISO646_H
#ifdef __ICCARM__ /* for iar */
#include_next <iso646.h>
#else
#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 /* __ICCARM__ */
#endif