Use free Windows DDK and compile with latest MinGW releases.
[reactos.git] / reactos / lib / msvcrt / process / spawnvpe.c
1 /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2 #include <msvcrti.h>
3
4 #if 0
5 int _spawnvpe(int nMode, const char* szPath, char* const* szaArgv, char* const* szaEnv)
6 {
7 return spawnve(nMode, szPath, szaArgv, szaEnv);
8 }
9 #endif