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

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