From 57a3e9c1c7507b5ce56122429cc3649009a4ecc7 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 15 Dec 2023 16:08:12 +0100 Subject: Remove superfluous includes This should fix #32 --- include/sys/select.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/sys/select.h') diff --git a/include/sys/select.h b/include/sys/select.h index f1cefee..9813bb7 100644 --- a/include/sys/select.h +++ b/include/sys/select.h @@ -33,7 +33,7 @@ extern "C" { _STI void __fortify_FD_CLR(int __f, fd_set * _FORTIFY_POS0 __s) { - size_t __b = __bos(__s, 0); + __fh_size_t __b = __bos(__s, 0); if (__f < 0 || __f >= FD_SETSIZE || __b < sizeof(fd_set)) __builtin_trap(); @@ -42,7 +42,7 @@ _STI void __fortify_FD_CLR(int __f, fd_set * _FORTIFY_POS0 __s) _STI void __fortify_FD_SET(int __f, fd_set * _FORTIFY_POS0 __s) { - size_t __b = __bos(__s, 0); + __fh_size_t __b = __bos(__s, 0); if (__f < 0 || __f >= FD_SETSIZE || __b < sizeof(fd_set)) __builtin_trap(); @@ -51,7 +51,7 @@ _STI void __fortify_FD_SET(int __f, fd_set * _FORTIFY_POS0 __s) _STI int __fortify_FD_ISSET(int __f, fd_set * _FORTIFY_POS0 __s) { - size_t __b = __bos(__s, 0); + __fh_size_t __b = __bos(__s, 0); if (__f < 0 || __f >= FD_SETSIZE || __b < sizeof(fd_set)) __builtin_trap(); -- cgit v1.3