tartan_uefi/
global.rs

1//! Static pointer to the [`SystemTable`], used by features where we can't pass it
2//! directly.
3
4use super::SystemTable;
5
6pub static mut SYSTEM_TABLE: Option<*mut SystemTable> = None;