libc/new/apple/mod.rs
1//! Apple interfaces.
2//!
3//! The Xcode SDK includes interfaces that are split across a couple of different libraries. Most
4//! of these are available at <https://github.com/apple-oss-distributions>.
5
6/// Entrypoint for Apple headers, usually found as part of the Xcode SDK.
7///
8/// <https://github.com/apple-oss-distributions/Libc/tree/main/include>
9mod libc {
10 pub(crate) mod signal;
11 pub(crate) mod unistd;
12}
13
14mod libpthread;
15mod xnu;
16
17pub(crate) use libc::*;
18pub(crate) use libpthread::pthread_;
19pub(crate) use pthread_::pthread;
20pub(crate) use xnu::*;