Files
rust/library/std/src/os/horizon/mod.rs
Ian Chamberlain dba6b74dd8 Fix warnings when checking armv6k-nintendo-3ds
Also fix one instance of unsafe_op_in_unsafe_fn that's specific to
horizon + vita - most others should be common with other code.
2024-07-21 20:12:54 -04:00

8 lines
149 B
Rust

//! Definitions for Horizon OS
#![forbid(unsafe_op_in_unsafe_fn)]
#![stable(feature = "raw_ext", since = "1.1.0")]
pub mod fs;
pub(crate) mod raw;