mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +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
6 lines
219 B
C
6 lines
219 B
C
#include <process.h>
|
|
|
|
intptr_t __cdecl spawnvpe(int mode,const char *_Filename,char *const _ArgList[],char *const _Env[])
|
|
{
|
|
return _spawnvpe(mode, _Filename,(const char *const *)_ArgList,(const char *const *)_Env);
|
|
}
|