Sign in
mingw
/
mingw-w64
/
75c5c8f10e43e3b70de6f71908d412a4770e5bed
/
.
/
mingw-w64-crt
/
misc
/
execv.c
blob: bdf3f0d02ebb7ba0273a9ccef688ade4e314434d [
file
]
#include
<process.h>
intptr_t
__cdecl execv
(
const
char
*
_Filename
,
char
*
const
_ArgList
[])
{
return
_execv
(
_Filename
,
(
const
char
*
const
*)
_ArgList
);
}