about summary refs log tree commit diff
path: root/library/std/src/sys/pal/trusty/mod.rs
blob: 04e6b4c81868780f946a532ca1119ad2db9e488f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! System bindings for the Trusty OS.

#[path = "../unsupported/common.rs"]
#[deny(unsafe_op_in_unsafe_fn)]
mod common;
#[path = "../unsupported/env.rs"]
pub mod env;
#[path = "../unsupported/os.rs"]
pub mod os;
#[path = "../unsupported/pipe.rs"]
pub mod pipe;
#[path = "../unsupported/thread.rs"]
pub mod thread;
#[path = "../unsupported/time.rs"]
pub mod time;

pub use common::*;