xref: /freebsd/lib/libnetbsd/sys/wait.h (revision 42b388439bd3795e09258c57a74ce9eec3651c7b)
1*6b9e8e4eSEnji Cooper /*-
2*6b9e8e4eSEnji Cooper  * Copyright (c) 2017 Dell, Inc.
3*6b9e8e4eSEnji Cooper  * All rights reserved.
4*6b9e8e4eSEnji Cooper  *
5*6b9e8e4eSEnji Cooper  * Redistribution and use in source and binary forms, with or without
6*6b9e8e4eSEnji Cooper  * modification, are permitted provided that the following conditions are met:
7*6b9e8e4eSEnji Cooper  *
8*6b9e8e4eSEnji Cooper  * 1. Redistributions of source code must retain the above copyright notice,
9*6b9e8e4eSEnji Cooper  * this list of conditions and the following disclaimer.
10*6b9e8e4eSEnji Cooper  *
11*6b9e8e4eSEnji Cooper  * 2. Redistributions in binary form must reproduce the above copyright notice,
12*6b9e8e4eSEnji Cooper  * this list of conditions and the following disclaimer in the documentation
13*6b9e8e4eSEnji Cooper  * and/or other materials provided with the distribution.
14*6b9e8e4eSEnji Cooper  *
15*6b9e8e4eSEnji Cooper  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
16*6b9e8e4eSEnji Cooper  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17*6b9e8e4eSEnji Cooper  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18*6b9e8e4eSEnji Cooper  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
19*6b9e8e4eSEnji Cooper  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20*6b9e8e4eSEnji Cooper  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21*6b9e8e4eSEnji Cooper  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22*6b9e8e4eSEnji Cooper  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23*6b9e8e4eSEnji Cooper  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24*6b9e8e4eSEnji Cooper  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25*6b9e8e4eSEnji Cooper  * SUCH DAMAGE.
26*6b9e8e4eSEnji Cooper  *
27*6b9e8e4eSEnji Cooper  */
28*6b9e8e4eSEnji Cooper 
29*6b9e8e4eSEnji Cooper #ifndef _LIBNETBSD_SYS_WAIT_H_
30*6b9e8e4eSEnji Cooper #define	_LIBNETBSD_SYS_WAIT_H_
31*6b9e8e4eSEnji Cooper 
32*6b9e8e4eSEnji Cooper #include_next <sys/wait.h>
33*6b9e8e4eSEnji Cooper 
34*6b9e8e4eSEnji Cooper #define	wrusage	__wrusage
35*6b9e8e4eSEnji Cooper 
36*6b9e8e4eSEnji Cooper #endif
37