repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_execv.c
blob
9f8f377ba3ed664b0b891c32f4988bfef34ff138
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>
7
8
extern
char
*
const
**
_penviron
;
/* The default environment. */
9
10
int
execv
(
const char
*
path
,
char
*
const
*
argv
)
11
{
12
return
execve
(
path
,
argv
, *
_penviron
);
13
}