reactos/reactos/lib/crtdll/process/spawnl.c
Boudewijn Dekker b3c424cd40 Changes and improved mingw32 compile
svn path=/trunk/; revision=330
1999-03-22 20:57:12 +00:00

10 lines
244 B
C

/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#include <process.h>
extern char **_environ;
int _spawnl(int mode, const char *path, const char *argv0, ...)
{
return spawnve(mode, path, (char * const *)&argv0, _environ);
}