20 lines
372 B
C
20 lines
372 B
C
#if !defined(lint) && defined(SCCSIDS)
|
|
static char sccsid[] = "@(#)execv.c 1.1 94/10/31 SMI";
|
|
#endif
|
|
/*
|
|
* execv(file, argv)
|
|
*
|
|
* where argv is a vector argv[0] ... argv[x], NULL
|
|
* last vector element must be NULL
|
|
* environment passed automatically
|
|
*/
|
|
|
|
execv(file, argv)
|
|
char *file;
|
|
char **argv;
|
|
{
|
|
extern char **environ;
|
|
|
|
return(execve(file, argv, environ));
|
|
}
|