129474Ssam/* 2*61190Sbostic * Copyright (c) 1983, 1993 3*61190Sbostic * The Regents of the University of California. All rights reserved. 434389Sbostic * 542648Sbostic * %sccs.include.redist.c% 629474Ssam */ 729474Ssam 834389Sbostic#if defined(SYSLIBC_SCCS) && !defined(lint) 9*61190Sbostic .asciz "@(#)pipe.s 8.1 (Berkeley) 06/04/93" 1034389Sbostic#endif /* SYSLIBC_SCCS and not lint */ 1129474Ssam 1229474Ssam#include "SYS.h" 1329474Ssam 1429474SsamSYSCALL(pipe) 1529474Ssam movl 4(fp),r2 1629474Ssam movl r0,(r2) 1729474Ssam movl r1,4(r2) 1829474Ssam clrl r0 1929474Ssam ret 20