From e4c7a2ab68b4a67ad9fb37734c8a00379659a815 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 3 Oct 2017 13:56:01 -0600 Subject: [PATCH] util: include string.h in u_string.h To fix MinGW compiler warning about missing strlen() prototype. Not sure how I missed this when fixing the malloc() / stdlib.h issue. Reviewed-by: Charmaine Lee --- src/util/u_string.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/u_string.h b/src/util/u_string.h index 5a2a3e9..fa0241e 100644 --- a/src/util/u_string.h +++ b/src/util/u_string.h @@ -41,6 +41,7 @@ #include #include #include +#include #include "util/macros.h" // PRINTFLIKE -- 2.7.4