]> git.proxmox.com Git - rustc.git/blobdiff - src/libstd/os/mod.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / libstd / os / mod.rs
index 91e37ed833a4faddaa4eb06c399245bb71ee4a29..fd6ee088e961c123fc6521aa3164e1bdce249774 100644 (file)
@@ -24,7 +24,7 @@ cfg_if::cfg_if! {
         // If we're not documenting libstd then we just expose the main modules
         // as we otherwise would.
 
-        #[cfg(any(target_os = "redox", unix, target_os = "vxworks"))]
+        #[cfg(any(target_os = "redox", unix, target_os = "vxworks", target_os = "hermit"))]
         #[stable(feature = "rust1", since = "1.0.0")]
         pub use crate::sys::ext as unix;
 
@@ -52,6 +52,8 @@ pub mod freebsd;
 pub mod fuchsia;
 #[cfg(target_os = "haiku")]
 pub mod haiku;
+#[cfg(target_os = "illumos")]
+pub mod illumos;
 #[cfg(target_os = "ios")]
 pub mod ios;
 #[cfg(target_os = "macos")]