* 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

@ -1,3 +1,8 @@
Fri Aug 25 21:49:00 2000 Corinna Vinschen <corinna@vinschen.de>
* exec.cc (_execve): Change definition according to declaration in
newlib/libc/include/sys/unistd.h.
Thu Aug 24 22:17:19 2000 Christopher Faylor <cgf@cygnus.com>
* external.cc (cygwin_internal): Add CW_INIT_EXCEPTIONS to allow cygwin

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;