From ed2931fc60ec4040e09554cac6a5ea150a3b4698 Mon Sep 17 00:00:00 2001 From: auronandace Date: Wed, 18 Mar 2026 12:00:01 +0000 Subject: [PATCH] remove duplicate fd_set struct from sys_time --- src/header/sys_time/mod.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/header/sys_time/mod.rs b/src/header/sys_time/mod.rs index a935c3734d..1a02d5d74f 100644 --- a/src/header/sys_time/mod.rs +++ b/src/header/sys_time/mod.rs @@ -38,14 +38,6 @@ pub const ITIMER_VIRTUAL: c_int = 1; #[deprecated] pub const ITIMER_PROF: c_int = 2; -/// See . -/// -/// TODO: specified for `sys/select.h` in modern POSIX? -#[repr(C)] -pub struct fd_set { - pub fds_bits: [c_long; 16usize], -} - /// See . /// /// # Deprecation