141850Sbostic/*- 2*61125Sbostic * Copyright (c) 1990, 1993 3*61125Sbostic * The Regents of the University of California. All rights reserved. 441850Sbostic * 541850Sbostic * This code is derived from software contributed to Berkeley by 641850Sbostic * the Systems Programming Group of the University of Utah Computer 741850Sbostic * Science Department. 841850Sbostic * 941850Sbostic * %sccs.include.redist.c% 1041850Sbostic */ 1141850Sbostic 1241850Sbostic#if defined(LIBC_SCCS) && !defined(lint) 13*61125Sbostic .asciz "@(#)pipe.s 8.1 (Berkeley) 06/04/93" 1441850Sbostic#endif /* LIBC_SCCS and not lint */ 1541850Sbostic 1641850Sbostic#include "SYS.h" 1741850Sbostic 1841850SbosticSYSCALL(pipe) 1941850Sbostic movl sp@(4),a0 2041850Sbostic movl d0,a0@+ 2141850Sbostic movl d1,a0@ 2241850Sbostic clrl d0 2341850Sbostic rts 24