aboutsummaryrefslogtreecommitdiff
path: root/src/process/execv.c
blob: b9d8efee2f886f85e48fe756a0b398e5d58bc428 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <unistd.h>

extern char **__environ;

int execv(const char *path, char *const argv[])
{
	return execve(path, argv, __environ);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif