1*29474Ssam/* 2*29474Ssam * Copyright (c) 1983 Regents of the University of California. 3*29474Ssam * All rights reserved. The Berkeley software License Agreement 4*29474Ssam * specifies the terms and conditions for redistribution. 5*29474Ssam */ 6*29474Ssam 7*29474Ssam#ifdef SYSLIBC_SCCS 8*29474Ssam_sccsid:.asciz "@(#)pipe.s 5.1 (Berkeley) 07/02/86" 9*29474Ssam#endif SYSLIBC_SCCS 10*29474Ssam 11*29474Ssam#include "SYS.h" 12*29474Ssam 13*29474SsamSYSCALL(pipe) 14*29474Ssam movl 4(fp),r2 15*29474Ssam movl r0,(r2) 16*29474Ssam movl r1,4(r2) 17*29474Ssam clrl r0 18*29474Ssam ret 19