diff options
author | gnzlbg <gonzalobg88@gmail.com> | 2019-05-16 09:55:07 +0200 |
---|---|---|
committer | gnzlbg <gonzalobg88@gmail.com> | 2019-05-16 11:03:45 +0200 |
commit | 77a4683aa1bceafb54c5a34c628f26fd746cb47f (patch) | |
tree | e7f4095fe1263b8b9d7078fb9bed7d06d07b69fa /src/unix/bsd/mod.rs | |
parent | 9183c00f7e01d6d3474ddd3eb7f1406cb1a0a577 (diff) | |
download | rust-libc-77a4683aa1bceafb54c5a34c628f26fd746cb47f.tar.gz |
Remove bitrig support
See https://github.com/rust-lang/rust/pull/60775 .
Diffstat (limited to 'src/unix/bsd/mod.rs')
-rw-r--r-- | src/unix/bsd/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/unix/bsd/mod.rs b/src/unix/bsd/mod.rs index 162be9d7f9..03c987dd33 100644 --- a/src/unix/bsd/mod.rs +++ b/src/unix/bsd/mod.rs @@ -663,8 +663,7 @@ cfg_if! { if #[cfg(any(target_os = "macos", target_os = "ios"))] { mod apple; pub use self::apple::*; - } else if #[cfg(any(target_os = "openbsd", target_os = "netbsd", - target_os = "bitrig"))] { + } else if #[cfg(any(target_os = "openbsd", target_os = "netbsd"))] { mod netbsdlike; pub use self::netbsdlike::*; } else if #[cfg(any(target_os = "freebsd", target_os = "dragonfly"))] { |