1 2 3 4 5 6
#include <syscall.h> int execve(const char *file, char *const argv[], char *const envp[]) { return syscall(execve, file, argv, envp); }