mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 02:48:50 +00:00
49d1a4c562
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
20 lines
266 B
C
Vendored
20 lines
266 B
C
Vendored
#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 |