#[cfg(feature = "fam-wrappers")]
#[macro_use]
extern crate vmm_sys_util;
#[cfg(feature = "fam-wrappers")]
mod fam_wrappers;
#[cfg(feature = "vfio-v5_0_0")]
mod bindings_v5_0_0;
#[cfg(not(feature = "vfio-v5_0_0"))]
mod bindings_v5_0_0;
pub mod bindings {
#[cfg(feature = "vfio-v5_0_0")]
pub use super::bindings_v5_0_0::*;
#[cfg(not(feature = "vfio-v5_0_0"))]
pub use super::bindings_v5_0_0::*;
#[cfg(feature = "fam-wrappers")]
pub use super::fam_wrappers::*;
}