This commit is contained in:
nora 2023-06-17 23:33:36 +02:00
parent f41be070bb
commit e7e9689e66
3 changed files with 3 additions and 5 deletions

View file

@ -1,3 +1,4 @@
reorder_imports = true
imports_granularity = "Crate"
group_imports = "StdExternalCrate"
wrap_comments = true

View file

@ -15,9 +15,7 @@
use core::{ffi, fmt};
use crate::stdext::with_last_os_error_str;
use crate::Addr;
use crate::{stdext::with_last_os_error_str, Addr};
#[repr(C)]
struct dl_find_object {

View file

@ -27,9 +27,8 @@
#[cfg(test)]
mod tests;
use core::ffi::CStr;
use alloc::{format, string::String};
use core::ffi::CStr;
/// The dwarf is invalid. This is fatal and should never happen.
#[derive(Debug)]