//! darwin-sys — minimum Darwin ABI surface for the pure-Rust std macOS backend.
//!
//! Covers every libSystem entry point that std needs: filesystem, process,
//! threading, synchronisation, time, environment, and randomness.
//!
//! Design principles (mirrors honeycrisp):
//! - `#![no_std]` — usable as a substrate for std itself.
//! - Zero external crate dependencies.
//! - Raw FFI in `ffi::*` (unsafe); safe wrappers at the module root.
//! - Errors are `OsError(i32)` wrapping the raw errno value.
extern crate alloc;
pub use ;
pub use *;