mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 06:43:07 +00:00
16 lines
248 B
C
Vendored
16 lines
248 B
C
Vendored
/* <iso646.h> for the Aro C compiler */
|
|
|
|
#pragma once
|
|
|
|
#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 ^=
|