summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-12-27 22:48:37 +0000
committerVincent Sanders <vince@kyllikki.org>2014-12-27 22:48:37 +0000
commit6b645664fe9c8f8d8a46493a6e00ef32b753a642 (patch)
tree31f690ee0914433964df2d47028a8276d2267c89 /content
parent5eefe0016384c85d1d09409d65d79f1f41208adb (diff)
downloadnetsurf-6b645664fe9c8f8d8a46493a6e00ef32b753a642.tar.gz
netsurf-6b645664fe9c8f8d8a46493a6e00ef32b753a642.tar.bz2
add missing includes
Diffstat (limited to 'content')
-rw-r--r--content/llcache.c1
-rw-r--r--content/mimesniff.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/content/llcache.c b/content/llcache.c
index e5d188e66..bd30d174a 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -34,6 +34,7 @@
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
+#include <strings.h>
#include <curl/curl.h>
#include <nsutils/time.h>
diff --git a/content/mimesniff.c b/content/mimesniff.c
index e8ebf8770..b24448861 100644
--- a/content/mimesniff.c
+++ b/content/mimesniff.c
@@ -22,7 +22,8 @@
* Spec version: 2011-11-27
*/
-#include<string.h>
+#include <string.h>
+#include <strings.h>
#include "content/content_factory.h"
#include "content/llcache.h"