rename function arguments to avoid collision with identically named define

Fixes mingw build error.
This commit is contained in:
Marius Gerbershagen 2017-11-10 21:09:06 +01:00
parent a8d7305fb6
commit 2ccc5de365

View file

@ -1911,10 +1911,10 @@ extern ECL_API cl_object si_waitpid(cl_object pid, cl_object wait);
extern ECL_API cl_object si_killpid(cl_object pid, cl_object signal);
extern ECL_API cl_object si_run_program_inner
(cl_object command, cl_object argv, cl_object environ);
(cl_object command, cl_object argv, cl_object environment);
extern ECL_API cl_object si_spawn_subprocess
(cl_object command, cl_object argv, cl_object environ,
(cl_object command, cl_object argv, cl_object environment,
cl_object input, cl_object output, cl_object error);