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)