mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 03:19:54 +08:00
db7acc382f
* 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.
15 lines
266 B
C
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);
|
|
}
|