From a06c4e1708930712d14631611092e7f8ae76266e Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 17 Jul 2003 18:40:53 +0000 Subject: [PATCH] fix an improperly stringed file found by DrSpliff --- libs/util/string.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/libs/util/string.c b/libs/util/string.c index c5989f5be..08c9e2f6a 100644 --- a/libs/util/string.c +++ b/libs/util/string.c @@ -31,7 +31,12 @@ static __attribute__ ((unused)) const char rcsid[] = "$Id$"; -#include +#ifdef HAVE_STRING_H +# include +#endif +#ifdef HAVE_STRINGS_H +# include +#endif #include #include "qstring.h"