]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/alpha/pipe.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / alpha / pipe.S
CommitLineData
d614a753 1/* Copyright (C) 1993-2020 Free Software Foundation, Inc.
db31c863 2 This file is part of the GNU C Library.
6932e444
RM
3 Contributed by David Mosberger (davidm@cs.arizona.edu).
4
db31c863 5 The GNU C Library is free software; you can redistribute it and/or
3214b89b
AJ
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
6932e444 9
db31c863
UD
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3214b89b 13 Lesser General Public License for more details.
6932e444 14
3214b89b 15 You should have received a copy of the GNU Lesser General Public
ab84e3ff 16 License along with the GNU C Library. If not, see
5a82c748 17 <https://www.gnu.org/licenses/>. */
6932e444
RM
18
19/* __pipe is a special syscall since it returns two values. */
20
21#include <sysdep.h>
22
1d47acf2 23PSEUDO (__pipe, pipe, 0)
6932e444
RM
24 stl r0, 0(a0)
25 stl r1, 4(a0)
26 mov zero, v0
27 ret
1d47acf2 28PSEUDO_END(__pipe)
6932e444 29
da5f5f79 30libc_hidden_def (__pipe)
6932e444 31weak_alias (__pipe, pipe)