:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / crtdll / process / spawnvpe.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
3 #include <crtdll/process.h>
4 #include <crtdll/errno.h>
5
6
7 int _spawnvpe(int nMode, const char* szPath, char* const* szaArgv, char* const* szaEnv)
8 {
9
10   return spawnve(nMode, szPath, szaArgv, szaEnv);
11
12 }