17
17
//! | macOS | [`getentropy()`][19] if available, otherise [`/dev/random`][20] (identical to `/dev/urandom`)
18
18
//! | iOS | [`SecRandomCopyBytes`][4]
19
19
//! | FreeBSD | [`kern.arandom`][5]
20
- //! | OpenBSD, Bitrig | [`getentropy`][6]
20
+ //! | OpenBSD | [`getentropy`][6]
21
21
//! | NetBSD | [`/dev/urandom`][7] after reading from `/dev/random` once
22
22
//! | Dragonfly BSD | [`/dev/random`][8]
23
23
//! | Solaris, illumos | [`getrandom`][9] system call if available, otherwise [`/dev/random`][10]
@@ -176,8 +176,6 @@ mod use_file;
176
176
cfg_if ! {
177
177
if #[ cfg( target_os = "android" ) ] {
178
178
#[ path = "linux_android.rs" ] mod imp;
179
- } else if #[ cfg( target_os = "bitrig" ) ] {
180
- #[ path = "openbsd_bitrig.rs" ] mod imp;
181
179
} else if #[ cfg( target_os = "cloudabi" ) ] {
182
180
#[ path = "cloudabi.rs" ] mod imp;
183
181
} else if #[ cfg( target_os = "dragonfly" ) ] {
@@ -201,7 +199,7 @@ cfg_if! {
201
199
} else if #[ cfg( target_os = "netbsd" ) ] {
202
200
#[ path = "use_file.rs" ] mod imp;
203
201
} else if #[ cfg( target_os = "openbsd" ) ] {
204
- #[ path = "openbsd_bitrig .rs" ] mod imp;
202
+ #[ path = "openbsd .rs" ] mod imp;
205
203
} else if #[ cfg( target_os = "redox" ) ] {
206
204
#[ path = "use_file.rs" ] mod imp;
207
205
} else if #[ cfg( target_os = "solaris" ) ] {
0 commit comments