1717//! | macOS | [`getentropy()`][19] if available, otherise [`/dev/random`][20] (identical to `/dev/urandom`)
1818//! | iOS | [`SecRandomCopyBytes`][4]
1919//! | FreeBSD | [`kern.arandom`][5]
20- //! | OpenBSD, Bitrig | [`getentropy`][6]
20+ //! | OpenBSD | [`getentropy`][6]
2121//! | NetBSD | [`/dev/urandom`][7] after reading from `/dev/random` once
2222//! | Dragonfly BSD | [`/dev/random`][8]
2323//! | Solaris, illumos | [`getrandom`][9] system call if available, otherwise [`/dev/random`][10]
@@ -176,8 +176,6 @@ mod use_file;
176176cfg_if ! {
177177 if #[ cfg( target_os = "android" ) ] {
178178 #[ path = "linux_android.rs" ] mod imp;
179- } else if #[ cfg( target_os = "bitrig" ) ] {
180- #[ path = "openbsd_bitrig.rs" ] mod imp;
181179 } else if #[ cfg( target_os = "cloudabi" ) ] {
182180 #[ path = "cloudabi.rs" ] mod imp;
183181 } else if #[ cfg( target_os = "dragonfly" ) ] {
@@ -201,7 +199,7 @@ cfg_if! {
201199 } else if #[ cfg( target_os = "netbsd" ) ] {
202200 #[ path = "use_file.rs" ] mod imp;
203201 } else if #[ cfg( target_os = "openbsd" ) ] {
204- #[ path = "openbsd_bitrig .rs" ] mod imp;
202+ #[ path = "openbsd .rs" ] mod imp;
205203 } else if #[ cfg( target_os = "redox" ) ] {
206204 #[ path = "use_file.rs" ] mod imp;
207205 } else if #[ cfg( target_os = "solaris" ) ] {
0 commit comments