mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 15:19:07 +00:00
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
10 lines
174 B
C
10 lines
174 B
C
#include <features.h>
|
|
|
|
struct k_sigaction {
|
|
unsigned flags;
|
|
void (*handler)(int);
|
|
unsigned long mask[2];
|
|
void (*restorer)();
|
|
};
|
|
|
|
hidden void __restore(), __restore_rt();
|