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