/* * execv.c */ #include #include int execv(const char *path, char *const *argv) { return execve(path, argv, environ); }