Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
process
/
execve.c
blob: 70286a17397da61e6dc31ff6db7f0c4dd2e77ef4 [
file
] [
log
] [
blame
]
#include
<unistd.h>
#include
"syscall.h"
int
execve
(
const
char
*
path
,
char
*
const
argv
[],
char
*
const
envp
[])
{
/* do we need to use environ if envp is null? */
return
syscall
(
SYS_execve
,
path
,
argv
,
envp
);
}