mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 19:09:32 +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
14 lines
534 B
C
Vendored
14 lines
534 B
C
Vendored
/* This file should define __BYTE_ORDER as appropriate for the machine
|
|
in question. See string/endian.h for how to define it.
|
|
|
|
If only the stub bits/endian.h applies to a particular configuration,
|
|
bytesex.h is generated by running a program on the host machine.
|
|
So if cross-compiling to a machine with a different byte order,
|
|
the bits/endian.h file for that machine must exist. */
|
|
|
|
#ifndef _ENDIAN_H
|
|
# error "Never use <bits/endian.h> directly; include <endian.h> instead."
|
|
#endif
|
|
|
|
#error Machine byte order unknown.
|