diff options
| author | Niels Sascha Reedijk <niels.reedijk@gmail.com> | 2016-09-24 23:38:56 -0500 |
|---|---|---|
| committer | Alexander von Gluck IV <kallisti5@unixzen.com> | 2016-09-25 11:12:23 -0500 |
| commit | 1a6fc8b7b840fb381b1aefa35b9b3d4c736bae50 (patch) | |
| tree | 0e05d41032bc801ce69ce359645da9a437260469 /src/libstd/sys/unix/mod.rs | |
| parent | 2d1d4d199471dbdf0828acbc06cfe452463569af (diff) | |
| download | rust-1a6fc8b7b840fb381b1aefa35b9b3d4c736bae50.tar.gz rust-1a6fc8b7b840fb381b1aefa35b9b3d4c736bae50.zip | |
Add support for the Haiku operating system on x86 and x86_64 machines
* Hand rebased from Niels original work on 1.9.0
Diffstat (limited to 'src/libstd/sys/unix/mod.rs')
| -rw-r--r-- | src/libstd/sys/unix/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/sys/unix/mod.rs b/src/libstd/sys/unix/mod.rs index 23687e10e47..3fbeda58e82 100644 --- a/src/libstd/sys/unix/mod.rs +++ b/src/libstd/sys/unix/mod.rs @@ -17,6 +17,7 @@ use libc; #[cfg(target_os = "bitrig")] pub use os::bitrig as platform; #[cfg(target_os = "dragonfly")] pub use os::dragonfly as platform; #[cfg(target_os = "freebsd")] pub use os::freebsd as platform; +#[cfg(target_os = "haiku")] pub use os::haiku as platform; #[cfg(target_os = "ios")] pub use os::ios as platform; #[cfg(target_os = "linux")] pub use os::linux as platform; #[cfg(target_os = "macos")] pub use os::macos as platform; |
