isblank() implementation.
[minix.git] / lib / libc / posix / _execv.c
blob9f8f377ba3ed664b0b891c32f4988bfef34ff138
1 /* execv() - execute with prepared arguments Author: Kees J. Bot
2 * 21 Jan 1994
3 */
4 #define execv _execv
5 #define execve _execve
6 #include <unistd.h>
8 extern char * const **_penviron; /* The default environment. */
10 int execv(const char *path, char * const *argv)
12 return execve(path, argv, *_penviron);