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. |
4 | mod pal; |
5 | |
6 | mod personality; |
7 | |
8 | pub mod cmath; |
9 | pub mod os_str; |
10 | |
11 | // FIXME(117276): remove this, move feature implementations into individual |
12 | // submodules. |
13 | pub use pal::*; |
14 |