repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
netinet/tcp.h: add TCP_NLA_* values up to linux v5.12
[musl.git]
/
src
/
process
/
execve.c
blob
70286a17397da61e6dc31ff6db7f0c4dd2e77ef4
1
#include <unistd.h>
2
#include
"syscall.h"
3
4
int
execve
(
const char
*
path
,
char
*
const
argv
[],
char
*
const
envp
[])
5
{
6
/* do we need to use environ if envp is null? */
7
return
syscall
(
SYS_execve
,
path
,
argv
,
envp
);
8
}