Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
compiler
aro
include
iso646.h
pretty
plain
permalink
blame
history
•
15 lines
•
248 B
1
/* <iso646.h> for the Aro C compiler */
2
3
#pragma once
4
5
#define and &&
6
#define and_eq &=
7
#define bitand &
8
#define bitor |
9
#define compl ~
10
#define not !
11
#define not_eq !=
12
#define or ||
13
#define or_eq |=
14
#define xor ^
15
#define xor_eq ^=