From 8a668fe733a91c0552f82b7078e8a11ddd7f6927 Mon Sep 17 00:00:00 2001 From: Stuart Ianna Date: Fri, 19 May 2023 12:17:47 +1000 Subject: [PATCH] include/sys: Include string.h to silence implicit memset declration. This change stops the warning "implicit declaration of function 'memset'" when using the `FD_ZERO` macro. --- include/sys/select.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/sys/select.h b/include/sys/select.h index b2cd1596651..dcf698521a6 100644 --- a/include/sys/select.h +++ b/include/sys/select.h @@ -30,6 +30,7 @@ #include #include #include +#include #include #ifdef CONFIG_FDCHECK