std/sys/mod.rs
1#![allow(unsafe_op_in_unsafe_fn)]
2
3/// The PAL (platform abstraction layer) contains platform-specific abstractions
4/// for implementing the features in the other submodules, e.g. UNIX file
5/// descriptors.
6mod pal;
7
8mod alloc;
9mod personality;
10
11pub mod anonymous_pipe;
12pub mod backtrace;
13pub mod cmath;
14pub mod exit_guard;
15pub mod io;
16pub mod net;
17pub mod os_str;
18pub mod path;
19pub mod random;
20pub mod sync;
21pub mod thread_local;
22
23// FIXME(117276): remove this, move feature implementations into individual
24// submodules.
25pub use pal::*;