blob: a91776f3e30ffc793b3b4295a3df3a4001cd46d3 (
plain)
1
2
3
4
5
6
7
8
|
#include "asm/unistd_64.h" // for __NR_execve
#include <syscall.h> // for __syscall_3, syscall
int execve(const char *file, char *const argv[], char *const envp[])
{
return syscall(execve, file, argv, envp);
}
|