about summary refs log tree commit diff
path: root/src/libstd/sys/unix/ext/net.rs
diff options
context:
space:
mode:
authorMarcel Hellwig <git@cookiesoft.de>2019-05-13 09:13:07 +0200
committerMarcel Hellwig <git@cookiesoft.de>2019-05-13 11:09:06 +0200
commitcc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0 (patch)
treea8b5e6df9bcbf3c265928fdffd84aa63a31ac8c1 /src/libstd/sys/unix/ext/net.rs
parentfe5f42cdb88d8ce31f746130099321e7c95e1ef0 (diff)
downloadrust-cc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0.tar.gz
rust-cc314b066a2f1d688ec2f5dec1fa5cb01ca1ebb0.zip
Remove bitrig support from rust
Diffstat (limited to 'src/libstd/sys/unix/ext/net.rs')
-rw-r--r--src/libstd/sys/unix/ext/net.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/unix/ext/net.rs b/src/libstd/sys/unix/ext/net.rs
index 45a850aa4a8..3ccb0a1b1ab 100644
--- a/src/libstd/sys/unix/ext/net.rs
+++ b/src/libstd/sys/unix/ext/net.rs
@@ -32,12 +32,12 @@ use crate::sys_common::{self, AsInner, FromInner, IntoInner};
 #[cfg(any(target_os = "linux", target_os = "android",
           target_os = "dragonfly", target_os = "freebsd",
           target_os = "openbsd", target_os = "netbsd",
-          target_os = "haiku", target_os = "bitrig"))]
+          target_os = "haiku"))]
 use libc::MSG_NOSIGNAL;
 #[cfg(not(any(target_os = "linux", target_os = "android",
               target_os = "dragonfly", target_os = "freebsd",
               target_os = "openbsd", target_os = "netbsd",
-              target_os = "haiku", target_os = "bitrig")))]
+              target_os = "haiku")))]
 const MSG_NOSIGNAL: libc::c_int = 0x0;
 
 fn sun_path_offset() -> usize {