xref: /openbsd/regress/lib/libc/sys/t_ppoll.c (revision abbaa274)
1*abbaa274Smbuhl /*	$OpenBSD: t_ppoll.c,v 1.1 2021/09/02 12:40:44 mbuhl Exp $	*/
2*abbaa274Smbuhl /*	$NetBSD: t_ppoll.c,v 1.1 2020/07/17 15:34:17 kamil Exp $	*/
3*abbaa274Smbuhl 
4*abbaa274Smbuhl /*-
5*abbaa274Smbuhl  * Copyright (c) 2011, 2020 The NetBSD Foundation, Inc.
6*abbaa274Smbuhl  * All rights reserved.
7*abbaa274Smbuhl  *
8*abbaa274Smbuhl  * This code is derived from software contributed to The NetBSD Foundation
9*abbaa274Smbuhl  * by Matthias Scheler.
10*abbaa274Smbuhl  *
11*abbaa274Smbuhl  * Redistribution and use in source and binary forms, with or without
12*abbaa274Smbuhl  * modification, are permitted provided that the following conditions
13*abbaa274Smbuhl  * are met:
14*abbaa274Smbuhl  * 1. Redistributions of source code must retain the above copyright
15*abbaa274Smbuhl  *    notice, this list of conditions and the following disclaimer.
16*abbaa274Smbuhl  * 2. Redistributions in binary form must reproduce the above copyright
17*abbaa274Smbuhl  *    notice, this list of conditions and the following disclaimer in the
18*abbaa274Smbuhl  *    documentation and/or other materials provided with the distribution.
19*abbaa274Smbuhl  *
20*abbaa274Smbuhl  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21*abbaa274Smbuhl  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22*abbaa274Smbuhl  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23*abbaa274Smbuhl  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24*abbaa274Smbuhl  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25*abbaa274Smbuhl  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26*abbaa274Smbuhl  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27*abbaa274Smbuhl  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28*abbaa274Smbuhl  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29*abbaa274Smbuhl  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30*abbaa274Smbuhl  * POSSIBILITY OF SUCH DAMAGE.
31*abbaa274Smbuhl  */
32*abbaa274Smbuhl 
33*abbaa274Smbuhl #define POLLTS ppoll
34*abbaa274Smbuhl #include "t_pollts.c"
35