//! # Pseudo-Module for the Native Platform
//!
//! This module behaves like an alias of the platform-module that matches the
//! compilation target. However, it is not a straight alias but a recompilation
//! of the platform-module with the Rust primitives as ABI.
//!
//! If no platform-module matches the compilation target, this will use the
//! `libc` module (if enabled). If the latter is not enabled, this module will
//! be empty.
pub use native as abi;
cond!
pub use *;