1#[allow(non_snake_case)] 2#[macro_export] 3macro_rules! twoto { 4 ($x:expr) => { 5 (1 << ($x)) as core::ffi::c_int 6 }; 7} 8 9pub use twoto;