* exec.cc (_execve): Change definition according to declaration in

newlib/libc/include/sys/unistd.h.
This commit is contained in:
Corinna Vinschen
2000-08-25 19:52:04 +00:00
parent c9ca4412d7
commit cd59f61488
2 changed files with 7 additions and 2 deletions

View File

@@ -20,8 +20,8 @@ details. */
in libc/posix/execve.c. It calls us. */
extern "C"
pid_t
_execve (const char *path, const char *const argv[], const char *const envp[])
int
_execve (const char *path, char *const argv[], char *const envp[])
{
static char *const empty_env[] = { 0 };
MALLOC_CHECK;