1#[macro_export] 2macro_rules! late_initcall { 3 ($func:ident) => { 4 #[unsafe(link_section = ".initcall.late")] 5 #[used(linker)] 6 static __LATE_INITCALL__ : fn() = $func; 7 }; 8}