1 #![no_main] 2 3 use uefi::prelude::*; 4 5 #[entry] main() -> Status6 extern "C" fn main() -> Status { 7 Status::SUCCESS 8 } 9