From a9b83afb2d6badaa01ab2b964f0285b7206bf52c Mon Sep 17 00:00:00 2001 From: Olliver Schinagl Date: Sun, 18 Jun 2023 12:51:58 +0200 Subject: [PATCH] Fix portability: Do not use linux/limits.h The header limits.h suffices, lets use that instead. Signed-off-by: Olliver Schinagl --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index ab8b458cc..6769de7a6 100644 --- a/src/config.c +++ b/src/config.c @@ -17,7 +17,7 @@ */ #include -#include +#include #include #include #include -- 2.47.3