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);
}