Skip to content

Commit

Permalink
Remove Bitrig support
Browse files Browse the repository at this point in the history
  • Loading branch information
josephlr committed Jul 7, 2019
1 parent 479d036 commit b7dcd3d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
//! | macOS | [`getentropy()`][19] if available, otherise [`/dev/random`][20] (identical to `/dev/urandom`)
//! | iOS | [`SecRandomCopyBytes`][4]
//! | FreeBSD | [`kern.arandom`][5]
//! | OpenBSD, Bitrig | [`getentropy`][6]
//! | OpenBSD | [`getentropy`][6]
//! | NetBSD | [`/dev/urandom`][7] after reading from `/dev/random` once
//! | Dragonfly BSD | [`/dev/random`][8]
//! | Solaris, illumos | [`getrandom`][9] system call if available, otherwise [`/dev/random`][10]
Expand Down Expand Up @@ -176,8 +176,6 @@ mod use_file;
cfg_if! {
if #[cfg(target_os = "android")] {
#[path = "linux_android.rs"] mod imp;
} else if #[cfg(target_os = "bitrig")] {
#[path = "openbsd_bitrig.rs"] mod imp;
} else if #[cfg(target_os = "cloudabi")] {
#[path = "cloudabi.rs"] mod imp;
} else if #[cfg(target_os = "dragonfly")] {
Expand Down

0 comments on commit b7dcd3d

Please sign in to comment.