about summary refs log tree commit diff
path: root/library/std/src/sys/pal/xous/mod.rs
blob: 383d031ed43537d442f01ed5c36ef620e1a14866 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_op_in_unsafe_fn)]

pub mod os;
#[path = "../unsupported/pipe.rs"]
pub mod pipe;
pub mod thread;
pub mod time;

#[path = "../unsupported/common.rs"]
mod common;
pub use common::*;