diff --git a/src/sys/socket/mod.rs b/src/sys/socket/mod.rs index 52768c9351..a3c0d1284e 100644 --- a/src/sys/socket/mod.rs +++ b/src/sys/socket/mod.rs @@ -920,7 +920,6 @@ pub fn sendmsg(fd: RawFd, iov: &[IoVec<&[u8]>], cmsgs: &[ControlMessage], target_os = "linux", target_os = "android", target_os = "freebsd", - target_os = "openbsd", target_os = "netbsd", ))] #[derive(Debug)] @@ -956,7 +955,6 @@ pub struct SendMmsgData<'a, I, C> target_os = "linux", target_os = "android", target_os = "freebsd", - target_os = "openbsd", target_os = "netbsd", ))] pub fn sendmmsg<'a, I, C>( diff --git a/test/sys/test_socket.rs b/test/sys/test_socket.rs index 9bf458285f..d6c1ec0cbb 100644 --- a/test/sys/test_socket.rs +++ b/test/sys/test_socket.rs @@ -309,7 +309,6 @@ mod recvfrom { target_os = "linux", target_os = "android", target_os = "freebsd", - target_os = "openbsd", target_os = "netbsd", ))] #[test]