Init
This commit is contained in:
23
lib/libc/sys/common/execle.c
Normal file
23
lib/libc/sys/common/execle.c
Normal file
@@ -0,0 +1,23 @@
|
||||
#if !defined(lint) && defined(SCCSIDS)
|
||||
static char sccsid[] = "@(#)execle.c 1.1 94/10/31 SMI";
|
||||
#endif
|
||||
#include <varargs.h>
|
||||
|
||||
/*
|
||||
* execle(name, arg0, arg1, ..., argn, (char *)0, envp)
|
||||
*/
|
||||
/*VARARGS1*/
|
||||
execle(name, va_alist)
|
||||
register char *name;
|
||||
va_dcl
|
||||
{
|
||||
register char **first;
|
||||
va_list args;
|
||||
|
||||
va_start(args);
|
||||
first = (char **)args;
|
||||
while (va_arg(args, char *)) /* traverse argument list to 0 */
|
||||
;
|
||||
/* environment is next arg */
|
||||
return(execve(name, first, *(char **)args));
|
||||
}
|
||||
Reference in New Issue
Block a user