From ee2b8b819f10e303cddc29e4eeaab3d443e68259 Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 14 Mar 2024 12:26:10 +0100 Subject: [PATCH] correct include for strlen() In Debian, as of dpkg 1.22.6, we automatically add -Werror=implicit-function-declaration to CFLAGS, which found this bug. --- src/pwm_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pwm_utils.c b/src/pwm_utils.c index 3303b106..1cd9867b 100644 --- a/src/pwm_utils.c +++ b/src/pwm_utils.c @@ -1,7 +1,7 @@ #include #include -#include +#include int symbol_match( char, char); int pattern_match( char*, char*, int);