diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-31 22:26:44 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-07-31 22:26:44 +0200 |
commit | 2565ba5d80b9ed075bcf2f2f4a6de5d38579bfaf (patch) | |
tree | e27e259fdce68a6549038984e88cadf0b29818fb | |
parent | 36b8df117ebdaaffe653427d3b06ce737bb94fa8 (diff) |
xml: fix missing include strings.h, for strncasecmp
-rw-r--r-- | xml.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4,6 +4,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <strings.h> #include <unistd.h> #include "xml.h" |