use core::ffi::*;
use crate::*;
extern "C-unwind" {
#[cfg(feature = "libc")]
pub fn be_kevent(
kq: c_int,
changelist: *const libc::kevent,
nchanges: c_int,
eventlist: *mut libc::kevent,
nevents: c_int,
be_flags: c_uint,
) -> c_int;
}
extern "C-unwind" {
#[cfg(feature = "libc")]
pub fn be_kevent64(
kq: c_int,
changelist: *const libc::kevent64_s,
nchanges: c_int,
eventlist: *mut libc::kevent64_s,
nevents: c_int,
flags: c_uint,
) -> c_int;
}