From ec8c8f22efb66ccae533fbd55a236570ffcf756c Mon Sep 17 00:00:00 2001 From: Michael Nosthoff Date: Thu, 22 Jul 2021 22:49:24 +0200 Subject: [PATCH] tools/mesh-cfgtest: include limits.h mesh-cfgtest.c uses MAX_PATH so it should include limits.h. fixes compilation error with musl-based toolchains. --- tools/mesh-cfgtest.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/mesh-cfgtest.c b/tools/mesh-cfgtest.c index fa0474faa..116ab7f16 100644 --- a/tools/mesh-cfgtest.c +++ b/tools/mesh-cfgtest.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include -- 2.47.3