From b7f5bc95fe334df81595b52094236adce0e13e9e Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Sat, 25 Aug 2018 11:59:49 -0600 Subject: [PATCH] signal: Actually make unix::bsd public --- src/unix.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/unix.rs b/src/unix.rs index 0d8a80a06..37cd6b5f4 100644 --- a/src/unix.rs +++ b/src/unix.rs @@ -41,7 +41,7 @@ pub use self::libc::{SIGALRM, SIGHUP, SIGPIPE, SIGQUIT, SIGTRAP}; target_os = "netbsd", target_os = "openbsd", ))] -mod bsd { +pub mod bsd { #[cfg(any(target_os = "dragonfly", target_os = "freebsd", target_os = "macos", target_os = "netbsd", target_os = "openbsd"))]