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 process;
21pub mod random;
22pub mod stdio;
23pub mod sync;
24pub mod thread_local;
25
26// FIXME(117276): remove this, move feature implementations into individual
27// submodules.
28pub use pal::*;
29