blob: d77ac7eb027dcb5237972b7f2b2754c884d70bb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/// The PAL (platform abstraction layer) contains platform-specific abstractions
/// for implementing the features in the other submodules, e.g. UNIX file
/// descriptors.
mod pal;
mod personality;
pub mod cmath;
pub mod locks;
pub mod os_str;
pub mod path;
// FIXME(117276): remove this, move feature implementations into individual
// submodules.
pub use pal::*;
|