Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
library
/
std
/
src
/
os
/
uefi
/
mod.rs
blob: b42d796b28f6965bc05b161a390906708f1df49e [
file
] [
log
] [
blame
]
//! 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
;