aboutsummaryrefslogtreecommitdiff
path: root/src/solaris_illumos.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/solaris_illumos.rs')
-rw-r--r--src/solaris_illumos.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/solaris_illumos.rs b/src/solaris_illumos.rs
index 9473123..2d1b767 100644
--- a/src/solaris_illumos.rs
+++ b/src/solaris_illumos.rs
@@ -17,8 +17,11 @@
//! To make sure we can compile on both Solaris and its derivatives, as well as
//! function, we check for the existence of getrandom(2) in libc by calling
//! libc::dlsym.
-use crate::util_libc::{sys_fill_exact, Weak};
-use crate::{use_file, Error};
+use crate::{
+ use_file,
+ util_libc::{sys_fill_exact, Weak},
+ Error,
+};
use core::mem;
#[cfg(target_os = "illumos")]