summaryrefslogtreecommitdiffstats
path: root/newlib/libc/posix/execve.c
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2000-08-30 18:34:53 +0000
committerJeff Johnston <jjohnstn@redhat.com>2000-08-30 18:34:53 +0000
commitdb7acc382fd5b2c5e58c0413028a367574e5c8b8 (patch)
treed5a197996e9d8abc1ba2d78f473aa7e9ae17e2db /newlib/libc/posix/execve.c
parenta8382fa44c26584947f61193caf9c40d85779622 (diff)
downloadcygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.tar.gz
cygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.tar.bz2
cygnal-db7acc382fd5b2c5e58c0413028a367574e5c8b8.zip
2000-08-30 Werner Almesberger <Werner.Almesberger@epfl.ch>
* libc/posix/execve.c: included unistd.h for "_execve" prototype. * libc/misc/unctrl.c libc/sys/sysvi386/crt0.c (sccsid): changed "#ifndef lint" to "#if defined(LIBC_SCCS) && !defined(lint)" like everywhere else.
Diffstat (limited to 'newlib/libc/posix/execve.c')
-rw-r--r--newlib/libc/posix/execve.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/newlib/libc/posix/execve.c b/newlib/libc/posix/execve.c
index 416144e86..1be0ed128 100644
--- a/newlib/libc/posix/execve.c
+++ b/newlib/libc/posix/execve.c
@@ -3,6 +3,10 @@
/* This and the other exec*.c files in this directory require
the target to provide the _execve syscall. */
+
+#include <unistd.h>
+
+
int
execve (const char *path, char * const argv[], char * const envp[])
{