mirror of
https://github.com/reactos/reactos.git
synced 2025-07-23 02:03:43 +00:00
10 lines
244 B
C
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);
|
|
}
|