From aee0dc7377c5aa5d6bdfe3f0963b20be2e38c0c1 Mon Sep 17 00:00:00 2001 From: eck Date: Mon, 22 Jan 1990 10:28:09 +0000 Subject: [PATCH] forgot _dup() --- mach/sun3/libsys/LIST | 1 + mach/sun3/libsys/_dup.s | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 mach/sun3/libsys/_dup.s diff --git a/mach/sun3/libsys/LIST b/mach/sun3/libsys/LIST index bacc0aca5..c2821c3c6 100644 --- a/mach/sun3/libsys/LIST +++ b/mach/sun3/libsys/LIST @@ -19,6 +19,7 @@ connect.s creat.s _creat.s dup.s +_dup.s dup2.s _dup2.s execl.c diff --git a/mach/sun3/libsys/_dup.s b/mach/sun3/libsys/_dup.s new file mode 100644 index 000000000..b2f4d6fc7 --- /dev/null +++ b/mach/sun3/libsys/_dup.s @@ -0,0 +1,4 @@ +#include "syscall.h" +.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text +.define __dup +__dup: SYSTEM(SYS_dup) -- 2.34.1