aecd80e2239d3b6afc17bc0d8d538833e46b0c52
[reactos.git] / reactos / lib / crtdll / process / spawnvp.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 _spawnvp(int nMode, const char* szPath, char* const* szaArgv)
7 {
8 return spawnvpe(nMode, szPath, (char * const *)szaArgv, _environ);
9 }