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 fs;
16pub mod io;
17pub mod net;
18pub mod os_str;
19pub mod path;
20pub mod random;
21pub mod stdio;
22pub mod sync;
23pub mod thread_local;
24
25// FIXME(117276): remove this, move feature implementations into individual
26// submodules.
27pub use pal::*;