1
2
3
4
5
6
extern crate libc;

#[cfg_attr(target_pointer_width = "32", path = "lib32.rs")]
#[cfg_attr(target_pointer_width = "64", path = "lib64.rs")]
mod bindgen;
pub use bindgen::*;