repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
posix
/
execve.c
blob
99c14542684c5d5172a2db5db8477285a04d834c
1
#ifndef _NO_EXECVE
2
3
/* execve.c */
4
5
/* This and the other exec*.c files in this directory require
6
the target to provide the _execve syscall. */
7
8
9
#include <unistd.h>
10
11
12
int
13
execve
(
const char
*
path
,
14
char
*
const
argv
[],
15
char
*
const
envp
[])
16
{
17
return
_execve
(
path
,
argv
,
envp
);
18
}
19
20
#endif
/* !_NO_EXECVE */