2024-01-11 20:10:25 +01:00
|
|
|
/// The PAL (platform abstraction layer) contains platform-specific abstractions
|
|
|
|
|
/// for implementing the features in the other submodules, e.g. UNIX file
|
|
|
|
|
/// descriptors.
|
|
|
|
|
mod pal;
|
|
|
|
|
|
2024-01-13 18:30:44 +01:00
|
|
|
mod personality;
|
|
|
|
|
|
2024-01-11 20:10:25 +01:00
|
|
|
// FIXME(117276): remove this, move feature implementations into individual
|
|
|
|
|
// submodules.
|
|
|
|
|
pub use pal::*;
|