Remove building with NOCRYPTO option
[minix3.git] / lib / libc / arch / or1k / sys / pipe.S
blobb6eb7988eb07dfa891a560f33612048033ec7b5f
1 /*      $NetBSD: pipe.S,v 1.1 2014/09/03 19:34:26 matt Exp $    */
3 #include "SYS.h"
5 #if defined(LIBC_SCCS) && !defined(lint)
6 __RCSID("$NetBSD: pipe.S,v 1.1 2014/09/03 19:34:26 matt Exp $")
7 #endif /* LIBC_SCCS && !lint */
9 #ifdef WEAK_ALIAS
10 WEAK_ALIAS(pipe, _pipe)
11 #endif
13 ENTRY(_pipe)
14         l.or    r5,r3,r0        # save pointer
15         _DOSYSCALL(pipe)        # assume, that r5 is kept
16         l.bf    _C_LABEL(__cerror)
17         l.nop
18         l.sw    0(r5),r11       # success, store fds
19         l.sw    4(r5),r12
20         l.xor   r11,r11,r11
21         l.jr    lr              # and return 0
22         l.nop
23 END(_pipe)