mirror of
https://github.com/ziglang/zig.git
synced 2026-01-11 01:45:12 +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
8 lines
154 B
C
Vendored
8 lines
154 B
C
Vendored
#include <spawn.h>
|
|
|
|
int posix_spawnattr_getsigdefault(const posix_spawnattr_t *restrict attr, sigset_t *restrict def)
|
|
{
|
|
*def = attr->__def;
|
|
return 0;
|
|
}
|