chore: fix formatting

Signed-off-by: Anhad Singh <andypython@protonmail.com>
This commit is contained in:
Anhad Singh
2024-12-31 01:23:51 +11:00
parent 5eeb59dad2
commit 0449c35e52
3 changed files with 6 additions and 4 deletions
+4 -1
View File
@@ -2,7 +2,10 @@
use crate::{
platform::types::*,
sync::{rwlock::{self, RwLock}, Mutex, MutexGuard},
sync::{
rwlock::{self, RwLock},
Mutex, MutexGuard,
},
};
/// A 48-bit integer, used for the 48-bit arithmetic in these functions.
+1 -2
View File
@@ -9,5 +9,4 @@ use syscall::{
use redox_rt::{proc::FdGuard, signal::sighandler_function};
pub use redox_rt::proc::*;
pub use redox_rt::thread::*;
pub use redox_rt::{proc::*, thread::*};
+1 -1
View File
@@ -15,7 +15,6 @@ use crate::{
c_str::{CStr, CString},
error::{self, Errno, Result, ResultExt},
fs::File,
sync::rwlock::RwLock,
header::{
dirent::dirent,
errno::{
@@ -35,6 +34,7 @@ use crate::{
unistd::{F_OK, R_OK, W_OK, X_OK},
},
io::{self, prelude::*, BufReader},
sync::rwlock::RwLock,
};
pub use redox_rt::proc::FdGuard;