zig/libc/mingw/misc/execve.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
199 B
C

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