Sign in
android
/
platform
/
external
/
rust
/
crates
/
uefi-macros
/
dfcf9c9ec56a8c5de5e86442db62cde8b2c22772
/
.
/
tests
/
ui
/
pass
/
entry.rs
blob: e2271d5a2c828082208ae1839488ba33bb5d4cee [
file
] [
log
] [
blame
]
use
uefi
::{
entry
,
Status
};
#[
entry
]
fn
efi_main
()
->
Status
{
Status
::
SUCCESS
}
// trybuild requires a `main` function.
fn
main
()
{}