mod check;
#[allow(unused_imports)]
use check::*;
#[cfg(feature = "int_are_size_bits")]
mod integer_typedef
{
#[allow(non_camel_case_types)]
pub type uint = usize;
#[allow(non_camel_case_types)]
pub type int = isize;
}
#[cfg(feature = "int_are_8_bits")]
mod integer_typedef
{
#[allow(non_camel_case_types)]
pub type uint = u8;
#[allow(non_camel_case_types)]
pub type int = i8;
}
#[cfg(feature = "int_are_16_bits")]
mod integer_typedef
{
#[allow(non_camel_case_types)]
pub type uint = u16;
#[allow(non_camel_case_types)]
pub type int = i16;
}
#[cfg(feature = "int_are_32_bits")]
mod integer_typedef
{
#[allow(non_camel_case_types)]
pub type uint = u32;
#[allow(non_camel_case_types)]
pub type int = i32;
}
#[cfg(feature = "int_are_64_bits")]
mod integer_typedef
{
#[allow(non_camel_case_types)]
pub type uint = u64;
#[allow(non_camel_case_types)]
pub type int = i64;
}
pub use integer_typedef::*;
#[cfg(feature = "float_are_size_bits")]
mod float_typedef
{
#[cfg(target_pointer_width = "32")]
#[allow(non_camel_case_types)]
pub type float = f32;
#[cfg(target_pointer_width = "64")]
#[allow(non_camel_case_types)]
pub type float = f64;
}
#[cfg(feature = "float_are_32_bits")]
mod float_typedef
{
#[allow(non_camel_case_types)]
pub type float = f32;
}
#[cfg(feature = "float_are_64_bits")]
mod float_typedef
{
#[allow(non_camel_case_types)]
pub type float = f64;
}
pub use float_typedef::*;
#[allow(non_camel_case_types)]
pub type coef = float;