4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 03:19:54 +08:00
Jeff Johnston db7acc382f 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.
2000-08-30 18:34:53 +00:00

15 lines
266 B
C

/* execve.c */
/* 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[])
{
return _execve (path, argv, envp);
}