1/// The PAL (platform abstraction layer) contains platform-specific abstractions
2/// for implementing the features in the other submodules, e.g. UNIX file
3/// descriptors.
4mod pal;
5
6mod personality;
7
8pub mod cmath;
9pub mod os_str;
10pub mod path;
11pub mod sync;
12#[allow(dead_code)]
13#[allow(unused_imports)]
14pub mod thread_local;
15
16// FIXME(117276): remove this, move feature implementations into individual
17// submodules.
18pub use pal::*;
19