Merge branch 'syssocket-netdb-cleanup' into 'master'

sys_socket and netdb header cleanup

See merge request redox-os/relibc!938
This commit is contained in:
Jeremy Soller
2026-02-02 06:39:53 -07:00
3 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ use crate::{
platform::{
Pal, Sys,
rlb::{Line, RawLineBuffer},
types::*,
types::{c_char, c_int},
},
raw_cell::RawCell,
};
+4 -1
View File
@@ -7,7 +7,10 @@ use core::mem;
use crate::{
out::Out,
platform::{Pal, Sys, types::*},
platform::{
Pal, Sys,
types::{c_int, c_void},
},
};
use crate::header::{
+1 -1
View File
@@ -1,4 +1,4 @@
use crate::platform::types::*;
use crate::platform::types::c_int;
pub const SOCK_STREAM: c_int = 1;
pub const SOCK_DGRAM: c_int = 2;