chiark / gitweb /
test: add "driver" and "bus" links to test sysfs tree
[elogind.git] / klibc / klibc / execv.c
1 /*
2  * execv.c
3  */
4
5 #include <stdarg.h>
6 #include <unistd.h>
7
8 int execv(const char *path, char * const * argv)
9 {
10   return execve(path, argv, environ);
11 }
12
13