summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-09-04 23:55:24 +0100
committerVincent Sanders <vince@kyllikki.org>2014-09-04 23:55:24 +0100
commit8e74b81769688c1df42f170a232c5f9851668d70 (patch)
tree8a3fd39053684ba3827d4ed21a14f8648a0d33bb
parent7630ae893aad7fbb168d073f405cfa2110ccb530 (diff)
downloadlibhubbub-8e74b81769688c1df42f170a232c5f9851668d70.tar.gz
libhubbub-8e74b81769688c1df42f170a232c5f9851668d70.tar.bz2
strncasecmp definition is in strings.h which was not being included
-rw-r--r--src/charset/detect.c1
-rw-r--r--src/treebuilder/treebuilder.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/charset/detect.c b/src/charset/detect.c
index fd3de13..efb900a 100644
--- a/src/charset/detect.c
+++ b/src/charset/detect.c
@@ -8,6 +8,7 @@
#include <assert.h>
#include <stdbool.h>
#include <string.h>
+#include <strings.h>
#include <parserutils/charset/mibenum.h>
diff --git a/src/treebuilder/treebuilder.c b/src/treebuilder/treebuilder.c
index a6a4b43..b67aa53 100644
--- a/src/treebuilder/treebuilder.c
+++ b/src/treebuilder/treebuilder.c
@@ -7,6 +7,7 @@
#include <assert.h>
#include <string.h>
+#include <strings.h>
#include <stdio.h>