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
/
syscalls
/
sysexecve.c
blob
52dbaddc31704f9d09a823434751d64fe701d0c0
1
/* connector for execve */
2
3
#include <reent.h>
4
#include <unistd.h>
5
6
int
7
execve
(
const char
*
name
,
8
char
*
const
argv
[],
9
char
*
const
env
[])
10
{
11
return
_execve_r
(
_REENT
,
name
,
argv
,
env
);
12
}