Sign in
third-party-mirror
/
mingw-w64
/
7be845814494130a499a1e2e29b9470cb2fcb44d
/
.
/
mingw-w64-crt
/
misc
/
execvp.c
blob: 3b422db2d5cf037e6f37ba57a60ee17236a5a4eb [
file
] [
log
] [
blame
]
#include
<process.h>
intptr_t
__cdecl execvp
(
const
char
*
_Filename
,
char
*
const
_ArgList
[])
{
return
_execvp
(
_Filename
,
(
const
char
*
const
*)
_ArgList
);
}