From 6b103837a582cb964b9257219f56233d579a3eb6 Mon Sep 17 00:00:00 2001 From: Chris Friedt Date: Thu, 2 Jan 2025 12:29:01 -0500 Subject: [PATCH] posix: options: file_system_r: include sys/util.h header for MIN Oddly, even though CI passed when the file_system_r change was merged, now CI has encountered a build error because MIN() was not defined. Include `` to pull in the definition. Signed-off-by: Chris Friedt --- lib/posix/options/file_system_r.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/posix/options/file_system_r.c b/lib/posix/options/file_system_r.c index 1e967764ef9..1e7421a8ebf 100644 --- a/lib/posix/options/file_system_r.c +++ b/lib/posix/options/file_system_r.c @@ -16,6 +16,7 @@ #include #include #include +#include int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result) {