]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/os/mod.rs
Add support for the Haiku operating system on x86 and x86_64 machines
[rust.git] / src / libstd / os / mod.rs
index 5606c127dcb0a49f07395bbf3391988092e44334..7622ef886935c3e601328a6dafe01d9a1f3e560e 100644 (file)
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-//! OS-specific functionality
+//! OS-specific functionality.
 
 #![stable(feature = "os", since = "1.0.0")]
 #![allow(missing_docs, bad_style)]
@@ -24,6 +24,7 @@
 #[cfg(target_os = "bitrig")]    pub mod bitrig;
 #[cfg(target_os = "dragonfly")] pub mod dragonfly;
 #[cfg(target_os = "freebsd")]   pub mod freebsd;
+#[cfg(target_os = "haiku")]     pub mod haiku;
 #[cfg(target_os = "ios")]       pub mod ios;
 #[cfg(target_os = "linux")]     pub mod linux;
 #[cfg(target_os = "macos")]     pub mod macos;
@@ -31,5 +32,6 @@
 #[cfg(target_os = "netbsd")]   pub mod netbsd;
 #[cfg(target_os = "openbsd")]   pub mod openbsd;
 #[cfg(target_os = "solaris")]   pub mod solaris;
+#[cfg(target_os = "emscripten")] pub mod emscripten;
 
 pub mod raw;