| //! OS-specific functionality. | |
| #![unstable(feature = "darwin_objc", issue = "145496")] | |
| #[cfg(all( | |
| doc, | |
| any( | |
| all(target_arch = "wasm32", not(target_os = "wasi")), | |
| all(target_vendor = "fortanix", target_env = "sgx") | |
| ) | |
| ))] | |
| #[unstable(issue = "none", feature = "std_internals")] | |
| pub mod darwin {} | |
| // darwin | |
| #[cfg(not(all( | |
| doc, | |
| any( | |
| all(target_arch = "wasm32", not(target_os = "wasi")), | |
| all(target_vendor = "fortanix", target_env = "sgx") | |
| ) | |
| )))] | |
| #[cfg(any(target_vendor = "apple", doc))] | |
| pub mod darwin; |