Merge branch 'fcntl-syslog-cleanup' into 'master'

fcntl and sys_syslog header cleanup

See merge request redox-os/relibc!937
This commit is contained in:
Jeremy Soller
2026-02-02 06:39:26 -07:00
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,
};