Reverted latest changes.
[reactos.git] / reactos / lib / msvcrt / process / execvp.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details *///#include <crtdll/stubs.h>
2
3 #include <msvcrt/process.h>
4 #include <msvcrt/stdlib.h>
5
6 int _execvp(const char* szPath, char* const* szaArgv)
7 {
8 return _spawnvpe(P_OVERLAY, szPath, szaArgv, _environ);
9 }