From: eck Date: Fri, 19 Jan 1990 17:15:47 +0000 (+0000) Subject: forgot _execve() X-Git-Tag: release-5-5~1919 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8c0b75b06874922bf82a35e09c67042b5f2aae92;p=ack.git forgot _execve() --- diff --git a/mach/sun3/libsys/LIST b/mach/sun3/libsys/LIST index 1d50aa9a6..49ce4e657 100644 --- a/mach/sun3/libsys/LIST +++ b/mach/sun3/libsys/LIST @@ -25,6 +25,7 @@ _execl.c execle.c execv.c execve.s +_execve.s exit.c exportfs.s fchmod.s diff --git a/mach/sun3/libsys/_execve.s b/mach/sun3/libsys/_execve.s new file mode 100644 index 000000000..21de1ff30 --- /dev/null +++ b/mach/sun3/libsys/_execve.s @@ -0,0 +1,4 @@ +#include "syscall.h" +.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text +.define __execve +__execve: SYSTEM(SYS_execve)