We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7dcd3d commit 5465e8fCopy full SHA for 5465e8f
src/lib.rs
@@ -199,7 +199,7 @@ cfg_if! {
199
} else if #[cfg(target_os = "netbsd")] {
200
#[path = "use_file.rs"] mod imp;
201
} else if #[cfg(target_os = "openbsd")] {
202
- #[path = "openbsd_bitrig.rs"] mod imp;
+ #[path = "openbsd.rs"] mod imp;
203
} else if #[cfg(target_os = "redox")] {
204
205
} else if #[cfg(target_os = "solaris")] {
src/openbsd_bitrig.rs renamed to src/openbsd.rs
@@ -6,7 +6,7 @@
6
// option. This file may not be copied, modified, or distributed
7
// except according to those terms.
8
9
-//! Implementation for OpenBSD / Bitrig
+//! Implementation for OpenBSD
10
extern crate std;
11
12
use crate::Error;
0 commit comments