remove duplicate socklen_t definition

This commit is contained in:
auronandace
2026-03-11 12:42:53 +00:00
parent 1bed273ad0
commit ae91f48fae
8 changed files with 29 additions and 11 deletions
+8 -2
View File
@@ -1,8 +1,14 @@
use super::{Sys, e_raw};
use crate::{
error::Result,
header::sys_socket::{msghdr, sockaddr, socklen_t},
platform::{PalSocket, types::*},
header::{
bits_socklen_t::socklen_t,
sys_socket::{msghdr, sockaddr},
},
platform::{
PalSocket,
types::{c_int, c_void, size_t},
},
};
impl PalSocket for Sys {