xref: /csrg-svn/lib/libc/tahoe/sys/pipe.s (revision 42648)
129474Ssam/*
229474Ssam * Copyright (c) 1983 Regents of the University of California.
334389Sbostic * All rights reserved.
434389Sbostic *
5*42648Sbostic * %sccs.include.redist.c%
629474Ssam */
729474Ssam
834389Sbostic#if defined(SYSLIBC_SCCS) && !defined(lint)
9*42648Sbostic	.asciz "@(#)pipe.s	5.4 (Berkeley) 06/01/90"
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