added new routines for ansi

This commit is contained in:
eck
1990-01-19 15:17:33 +00:00
parent f21378d696
commit 86b0d0bc80
26 changed files with 180 additions and 1 deletions

14
mach/sun3/libsys/_pipe.s Normal file
View File

@@ -0,0 +1,14 @@
#include "syscall.h"
.sect .text; .sect .rom; .sect .data; .sect .bss; .sect .text
.define __pipe
__pipe:
pea (SYS_pipe)
trap #0
bcs 1f
move.l (4,sp),a0
move.l d0,(a0)+
move.l d1,(a0)
clr.l d0
rts
1:
jmp (cerror)