diff --git a/mach/sun3/libsys/LIST b/mach/sun3/libsys/LIST index 1d50aa9a..49ce4e65 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 00000000..21de1ff3 --- /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)