summaryrefslogtreecommitdiffstats
path: root/usr/klibc/execv.c
blob: 6894e79898a2f256b5d817190996cd1fedf1f38d (plain)
1
2
3
4
5
6
7
8
9
10
/*
 * execv.c
 */

#include <unistd.h>

int execv(const char *path, char *const *argv)
{
	return execve(path, argv, environ);
}