Initial revision
authorceriel <none@none>
Mon, 13 Apr 1987 17:10:33 +0000 (17:10 +0000)
committerceriel <none@none>
Mon, 13 Apr 1987 17:10:33 +0000 (17:10 +0000)
mach/m68020/libsys/execle.c [new file with mode: 0644]
mach/m68020/libsys/execv.c [new file with mode: 0644]

diff --git a/mach/m68020/libsys/execle.c b/mach/m68020/libsys/execle.c
new file mode 100644 (file)
index 0000000..aed0363
--- /dev/null
@@ -0,0 +1,9 @@
+execle(name,args)
+       char *name;
+       char *args;
+{
+       char **p = &args;
+       while (*p++) ;
+
+       execve(name,&args,*p);
+}
diff --git a/mach/m68020/libsys/execv.c b/mach/m68020/libsys/execv.c
new file mode 100644 (file)
index 0000000..200486f
--- /dev/null
@@ -0,0 +1,7 @@
+execv(name,args)
+       char *name;
+       char **args;
+{
+       extern char **environ;
+       execve(name,args,environ);
+}