about summary refs log tree commit diff
path: root/library/std/src/sys/pal/unix/weak.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys/pal/unix/weak.rs')
-rw-r--r--library/std/src/sys/pal/unix/weak.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/library/std/src/sys/pal/unix/weak.rs b/library/std/src/sys/pal/unix/weak.rs
index 4765a286e6b..b1b6aae757c 100644
--- a/library/std/src/sys/pal/unix/weak.rs
+++ b/library/std/src/sys/pal/unix/weak.rs
@@ -23,9 +23,8 @@
 
 use crate::ffi::CStr;
 use crate::marker::PhantomData;
-use crate::mem;
-use crate::ptr;
 use crate::sync::atomic::{self, AtomicPtr, Ordering};
+use crate::{mem, ptr};
 
 // We can use true weak linkage on ELF targets.
 #[cfg(all(unix, not(target_vendor = "apple")))]