xref: /openbsd-src/lib/libc/hidden/sys/wait.h (revision cf58d2cc93ed8fae32c8a3fa4d54102473425a16)
1*cf58d2ccSkettenis /*	$OpenBSD: wait.h,v 1.3 2022/10/26 23:16:24 kettenis Exp $	*/
2800a8adeSguenther /*
3800a8adeSguenther  * Copyright (c) 2015 Philip Guenther <guenther@openbsd.org>
4800a8adeSguenther  *
5800a8adeSguenther  * Permission to use, copy, modify, and distribute this software for any
6800a8adeSguenther  * purpose with or without fee is hereby granted, provided that the above
7800a8adeSguenther  * copyright notice and this permission notice appear in all copies.
8800a8adeSguenther  *
9800a8adeSguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10800a8adeSguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11800a8adeSguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12800a8adeSguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13800a8adeSguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14800a8adeSguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15800a8adeSguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16800a8adeSguenther  */
17800a8adeSguenther 
18800a8adeSguenther #ifndef _LIBC_SYS_WAIT_H_
19800a8adeSguenther #define _LIBC_SYS_WAIT_H_
20800a8adeSguenther 
21800a8adeSguenther #include_next <sys/wait.h>
22800a8adeSguenther 
23800a8adeSguenther PROTO_DEPRECATED(wait);
24800a8adeSguenther PROTO_NORMAL(waitpid);
25800a8adeSguenther PROTO_DEPRECATED(wait3);
26fe38b55cSguenther PROTO_CANCEL(wait4);
27*cf58d2ccSkettenis PROTO_CANCEL(waitid);
28800a8adeSguenther 
29800a8adeSguenther #endif /* !_LIBC_SYS_WAIT_H_ */
30