update for HEAD-2003091401
[reactos.git] / lib / crtdll / 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 }