From: eck Date: Mon, 22 Jan 1990 09:28:35 +0000 (+0000) Subject: forgot _creat() X-Git-Tag: release-5-5~1915 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=55fab905c1d902ef5cd312e2ec718f4de003fb18;p=ack.git forgot _creat() --- 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)