guard the private header
[reactos.git] / reactos / lib / crtdll / old cruft / process / spawnvp.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
3 #include <msvcrt/process.h>
4 #include <msvcrt/stdlib.h>
5
6 /*
7 * @implemented
8 */
9 int _spawnvp(int nMode, const char* szPath, char* const* szaArgv)
10 {
11 return spawnvpe(nMode, szPath, (char * const *)szaArgv, _environ);
12 }