blob: b42d796b28f6965bc05b161a390906708f1df49e (
plain)
1
2
3
4
5
6
7
8
9
|
//! Platform-specific extensions to `std` for UEFI.
#![unstable(feature = "uefi_std", issue = "100499")]
#![doc(cfg(target_os = "uefi"))]
#![forbid(unsafe_op_in_unsafe_fn)]
pub mod env;
#[path = "../windows/ffi.rs"]
pub mod ffi;
|