5 /* This and the other exec*.c files in this directory require
6 the target to provide the _execve syscall. */
11 /* Only deal with a pointer to environ, to work around subtle bugs with shared
12 libraries and/or small data systems where the user declares his own
14 static char ***p_environ
= &environ
;
17 execv (const char *path
,
20 return _execve (path
, (char * const *) argv
, *p_environ
);
23 #endif /* !_NO_EXECVE */