mirror of
https://github.com/fluencelabs/musl
synced 2025-06-21 18:51:52 +00:00
9 lines
232 B
C
9 lines
232 B
C
![]() |
#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 syscall3(__NR_execve, (long)path, (long)argv, (long)envp);
|
||
|
}
|