1 2 3 4 5 6
#include <unistd.h> int execv(__const char *path, char *__const argv[]) { return execve(path, argv, __environ); }