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