This commit is contained in:
ceriel
1991-09-20 18:14:05 +00:00
parent f03c37528e
commit 0b83bf33e8
214 changed files with 8614 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
execle(name,args)
char *name;
char *args;
{
char **p = &args;
while (*p++) ;
execve(name,&args,*p);
}