fcntl and sys_syslog header cleanup

This commit is contained in:
auronandace
2026-02-02 08:53:28 +00:00
parent 3f71ace6ab
commit 4927301713
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::platform::types::*;
use crate::platform::types::c_int;
pub const O_RDONLY: c_int = 0x0000;
pub const O_WRONLY: c_int = 0x0001;
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::platform::types::*;
use crate::platform::types::c_int;
pub const O_RDONLY: c_int = 0x0001_0000;
pub const O_WRONLY: c_int = 0x0002_0000;
+4 -1
View File
@@ -14,7 +14,10 @@ use crate::{
unistd::getpid,
},
io::Write,
platform::{self, types::*},
platform::{
self,
types::{c_char, c_int},
},
sync::Mutex,
};