mirror of
https://github.com/ziglang/zig.git
synced 2025-12-13 09:43:09 +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
163 B
C
Vendored
10 lines
163 B
C
Vendored
#include <setjmp.h>
|
|
#include <signal.h>
|
|
#include "syscall.h"
|
|
#include "pthread_impl.h"
|
|
|
|
_Noreturn void siglongjmp(sigjmp_buf buf, int ret)
|
|
{
|
|
longjmp(buf, ret);
|
|
}
|