date and time created 86/07/02 16:23:11 by sam
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Thu, 3 Jul 1986 07:23:11 +0000 (23:23 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Thu, 3 Jul 1986 07:23:11 +0000 (23:23 -0800)
SCCS-vsn: lib/libc/tahoe/sys/execv.s 5.1
SCCS-vsn: lib/libc/tahoe/sys/execve.s 5.1

usr/src/lib/libc/tahoe/sys/execv.s [new file with mode: 0644]
usr/src/lib/libc/tahoe/sys/execve.s [new file with mode: 0644]

diff --git a/usr/src/lib/libc/tahoe/sys/execv.s b/usr/src/lib/libc/tahoe/sys/execv.s
new file mode 100644 (file)
index 0000000..df60ced
--- /dev/null
@@ -0,0 +1,19 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifdef SYSLIBC_SCCS
+_sccsid:.asciz "@(#)execv.s    5.1 (Berkeley) %G%"
+#endif SYSLIBC_SCCS
+
+#include "SYS.h"
+
+ENTRY(execv)
+       .globl  _environ
+       pushl   _environ
+       pushl   8(fp)
+       pushl   4(fp)
+       calls   $16,_execve
+       ret                     # execv(file, argv)
diff --git a/usr/src/lib/libc/tahoe/sys/execve.s b/usr/src/lib/libc/tahoe/sys/execve.s
new file mode 100644 (file)
index 0000000..a8ad949
--- /dev/null
@@ -0,0 +1,14 @@
+/*
+ * Copyright (c) 1983 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ */
+
+#ifdef SYSLIBC_SCCS
+_sccsid:.asciz "@(#)execve.s   5.1 (Berkeley) %G%"
+#endif SYSLIBC_SCCS
+
+#include "SYS.h"
+
+SYSCALL(execve)
+       ret             # execve(file, argv, arge)