Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / posix / execve.c
blob99c14542684c5d5172a2db5db8477285a04d834c
1 #ifndef _NO_EXECVE
3 /* execve.c */
5 /* This and the other exec*.c files in this directory require
6 the target to provide the _execve syscall. */
9 #include <unistd.h>
12 int
13 execve (const char *path,
14 char * const argv[],
15 char * const envp[])
17 return _execve (path, argv, envp);
20 #endif /* !_NO_EXECVE */