3 /* This and the other exec*.c files in this directory require
4 the target to provide the _execve syscall. */
9 /* Only deal with a pointer to environ, to work around subtle bugs with shared
10 libraries and/or small data systems where the user declares his own
12 static char ***p_environ
= &environ
;
15 _DEFUN (execv
, (path
, argv
),
19 return _execve (path
, (char * _CONST
*) argv
, *p_environ
);