121853Sdist/* 2*61222Sbostic * Copyright (c) 1983, 1993 3*61222Sbostic * The Regents of the University of California. All rights reserved. 434391Sbostic * 542642Sbostic * %sccs.include.redist.c% 621853Sdist */ 79485Smckusick 834391Sbostic#if defined(SYSLIBC_SCCS) && !defined(lint) 9*61222Sbostic .asciz "@(#)pipe.s 8.1 (Berkeley) 06/04/93" 1034391Sbostic#endif /* SYSLIBC_SCCS and not lint */ 1121853Sdist 129485Smckusick#include "SYS.h" 139485Smckusick 149485SmckusickSYSCALL(pipe) 159485Smckusick movl 4(ap),r2 169485Smckusick movl r0,(r2)+ 179485Smckusick movl r1,(r2) 189485Smckusick clrl r0 199485Smckusick ret 20