repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
posix
/
execve.c
blob
8083c03b092dfbc12b2d39b99e3ac5f5a4db594e
1
/* execve.c */
2
3
/* This and the other exec*.c files in this directory require
4
the target to provide the _execve syscall. */
5
6
7
#include <unistd.h>
8
9
10
int
11
_DEFUN
(
execve
, (
path
,
argv
,
envp
),
12
const char
*
path _AND
13
char
*
const
argv
[]
_AND
14
char
*
const
envp
[])
15
{
16
return
_execve
(
path
,
argv
,
envp
);
17
}