:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / process / execv.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
3 #include <crtdll/process.h>
4 #include <crtdll/stdlib.h>
5
6 int _execv(const char* szPath, char* const* szaArgv)
7 {
8   return _spawnve(P_OVERLAY, szPath, szaArgv, _environ);
9 }