Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2000-08-25 23:52:04 +0400
committerCorinna Vinschen <corinna@vinschen.de>2000-08-25 23:52:04 +0400
commitcd59f61488e2a5653d04cc4229fe3b084e497c80 (patch)
tree29824cc7bef7d2c080b078ae0c78ad6377ef3c0e /winsup/cygwin/exec.cc
parentc9ca4412d7df43b9684e9477abf51afb86ad72ee (diff)
* exec.cc (_execve): Change definition according to declaration in
newlib/libc/include/sys/unistd.h.
Diffstat (limited to 'winsup/cygwin/exec.cc')
-rw-r--r--winsup/cygwin/exec.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/exec.cc b/winsup/cygwin/exec.cc
index e6765e87f..76a98074d 100644
--- a/winsup/cygwin/exec.cc
+++ b/winsup/cygwin/exec.cc
@@ -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;