From: Ruben Kerkhof Date: Sun, 16 Aug 2015 10:28:43 +0000 (+0200) Subject: liboconfig: Fix implicit declaration warning X-Git-Tag: collectd-5.5.1~67^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cee263e4f6a1cc0cf98f8f30f1687e99dcc74b5;p=thirdparty%2Fcollectd.git liboconfig: Fix implicit declaration warning strlen declaration is in string.h --- diff --git a/src/liboconfig/scanner.l b/src/liboconfig/scanner.l index e38cf3039..a07c3e873 100644 --- a/src/liboconfig/scanner.l +++ b/src/liboconfig/scanner.l @@ -19,6 +19,7 @@ %{ #include +#include #include "oconfig.h" #include "aux_types.h" #include "parser.h"