Files
rust/library/std/src/sys/mod.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
322 B
Rust
Raw Normal View History

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