From 55fab905c1d902ef5cd312e2ec718f4de003fb18 Mon Sep 17 00:00:00 2001 From: eck Date: Mon, 22 Jan 1990 09:28:35 +0000 Subject: [PATCH] forgot _creat() --- mach/sun3/libsys/LIST | 1 + mach/sun3/libsys/_creat.s | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 mach/sun3/libsys/_creat.s diff --git a/mach/sun3/libsys/LIST b/mach/sun3/libsys/LIST index 49ce4e657..bacc0aca5 100644 --- a/mach/sun3/libsys/LIST +++ b/mach/sun3/libsys/LIST @@ -17,6 +17,7 @@ close.s _close.s connect.s creat.s +_creat.s dup.s dup2.s _dup2.s diff --git a/mach/sun3/libsys/_creat.s b/mach/sun3/libsys/_creat.s new file mode 100644 index 000000000..eb31e487c --- /dev/null +++ b/mach/sun3/libsys/_creat.s @@ -0,0 +1,4 @@ +#include "syscall.h" +.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text +.define __creat +__creat: SYSTEM(SYS_creat) -- 2.34.1