chiark / gitweb /
[PATCH] sync with latest version of klibc (0.107)
[elogind.git] / klibc / klibc / execvp.c
1 /*
2  * execvp.c
3  */
4
5 #include <stdarg.h>
6 #include <unistd.h>
7
8 int execvp(const char *path, char * const * argv)
9 {
10   return execvpe(path, argv, environ);
11 }
12
13