Browse Source

forgot _execve()

eck 34 years ago
parent
commit
d42146a5cc
2 changed files with 5 additions and 0 deletions
  1. 1 0
      mach/sun3/libsys/LIST
  2. 4 0
      mach/sun3/libsys/_execve.s

+ 1 - 0
mach/sun3/libsys/LIST

@@ -25,6 +25,7 @@ _execl.c
 execle.c
 execv.c
 execve.s
+_execve.s
 exit.c
 exportfs.s
 fchmod.s

+ 4 - 0
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)