Initial revision
This commit is contained in:
parent
cc3413a7b9
commit
78f595ce51
9
mach/m68020/libsys/execle.c
Normal file
9
mach/m68020/libsys/execle.c
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
execle(name,args)
|
||||||
|
char *name;
|
||||||
|
char *args;
|
||||||
|
{
|
||||||
|
char **p = &args;
|
||||||
|
while (*p++) ;
|
||||||
|
|
||||||
|
execve(name,&args,*p);
|
||||||
|
}
|
||||||
7
mach/m68020/libsys/execv.c
Normal file
7
mach/m68020/libsys/execv.c
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
execv(name,args)
|
||||||
|
char *name;
|
||||||
|
char **args;
|
||||||
|
{
|
||||||
|
extern char **environ;
|
||||||
|
execve(name,args,environ);
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user