#![allow(non_camel_case_types)]
#[cfg(any(target_arch = "avr", target_arch = "msp430"))]
mod ints {
pub type c_int = i16;
pub type c_uint = u16;
}
#[cfg(not(any(target_arch = "avr", target_arch = "msp430")))]
mod ints {
pub type c_int = i32;
pub type c_uint = u32;
}
#[cfg(all(target_pointer_width = "64", not(windows)))]
mod longs {
pub type c_ulong = u64;
}
#[cfg(not(all(target_pointer_width = "64", not(windows))))]
mod longs {
pub type c_ulong = u32;
}
pub use ints::*;
pub use longs::*;