1 2 3 4 5
pub fn align(len: usize) -> usize { const RTA_ALIGNTO: usize = 4; ((len)+RTA_ALIGNTO-1) & !(RTA_ALIGNTO-1) }