Commit b7dcd3d 1 parent 479d036 commit b7dcd3d Copy full SHA for b7dcd3d
File tree 1 file changed +1
-3
lines changed
1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 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" ) ] {
You can’t perform that action at this time.
0 commit comments