xref: /openbsd-src/lib/libc/hidden/sys/event.h (revision 29a332bce639b243a2a4eb50b04c3fabaca6fefb)
1*29a332bcSvisa /*	$OpenBSD: event.h,v 1.2 2023/08/20 15:17:53 visa Exp $	*/
2170ca6cdSguenther /*
3170ca6cdSguenther  * Copyright (c) 2023 Philip Guenther <guenther@openbsd.org>
4170ca6cdSguenther  *
5170ca6cdSguenther  * Permission to use, copy, modify, and distribute this software for any
6170ca6cdSguenther  * purpose with or without fee is hereby granted, provided that the above
7170ca6cdSguenther  * copyright notice and this permission notice appear in all copies.
8170ca6cdSguenther  *
9170ca6cdSguenther  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10170ca6cdSguenther  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11170ca6cdSguenther  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12170ca6cdSguenther  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13170ca6cdSguenther  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14170ca6cdSguenther  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15170ca6cdSguenther  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16170ca6cdSguenther  */
17170ca6cdSguenther 
18170ca6cdSguenther #ifndef _LIBC_SYS_EVENT_H_
19170ca6cdSguenther #define _LIBC_SYS_EVENT_H_
20170ca6cdSguenther 
21170ca6cdSguenther #include_next <sys/event.h>
22170ca6cdSguenther 
23170ca6cdSguenther PROTO_NORMAL(kevent);
24170ca6cdSguenther PROTO_NORMAL(kqueue);
25*29a332bcSvisa PROTO_NORMAL(kqueue1);
26170ca6cdSguenther 
27170ca6cdSguenther #endif /* !_LIBC_SYS_EVENT_H_ */
28