1 pub type boolean_t = ::c_int;
2 
3 cfg_if! {
4     if #[cfg(libc_align)] {
5         mod align;
6         pub use self::align::*;
7     }
8 }
9