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