blob: 961cc5594eac05c41632d82529474b0381f63b04 [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);
}