mirror of
https://github.com/ziglang/zig.git
synced 2024-12-01 09:32:31 +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
13 lines
298 B
C
13 lines
298 B
C
#ifndef __A_OUT_GNU_H__
|
|
# error "Never use <bits/a.out.h> directly; include <a.out.h> instead."
|
|
#endif
|
|
|
|
#include <bits/wordsize.h>
|
|
|
|
#if __WORDSIZE == 64
|
|
|
|
/* Signal to users of this header that this architecture really doesn't
|
|
support a.out binary format. */
|
|
#define __NO_A_OUT_SUPPORT 1
|
|
|
|
#endif |