zig/libc/mingw/misc/execvpe.c
Andrew Kelley 2bb93784c6
mingw: build and link mingwex.lib
zig can now cross compile hello.c targeting windows
2019-07-10 17:41:34 -04:00

7 lines
200 B
C

#include <process.h>
int __cdecl execvpe(const char *_Filename,char *const _ArgList[],char *const _Env[])
{
return _execvpe (_Filename, (const char *const *)_ArgList, (const char *const *)_Env);
}