forgot _dup()

This commit is contained in:
eck 1990-01-22 10:28:09 +00:00
parent 666c527a43
commit aee0dc7377
2 changed files with 5 additions and 0 deletions

View file

@ -19,6 +19,7 @@ connect.s
creat.s
_creat.s
dup.s
_dup.s
dup2.s
_dup2.s
execl.c

4
mach/sun3/libsys/_dup.s Normal file
View file

@ -0,0 +1,4 @@
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define __dup
__dup: SYSTEM(SYS_dup)