libc/new/apple/xnu/sys/mod.rs
1//! Directory: `sys/`
2//!
3//! <https://github.com/apple-oss-distributions/xnu/tree/main/bsd/sys>
4
5pub(crate) mod signal;
6
7/// Directory: `sys/_types`
8///
9/// https://github.com/apple-oss-distributions/xnu/tree/main/bsd/sys/_types
10pub(crate) mod _types {
11 pub(crate) mod _ucontext;
12}
13
14// Bit of a hack since the directories get merged and we can't have >1 sys module.
15pub(crate) use crate::new::apple::libpthread::sys::*;