chiark / gitweb /
[PATCH] fix bug in klibc's isspace function.
[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