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;
10
11// FIXME(117276): remove this, move feature implementations into individual
12// submodules.
13pub use pal::*;
14