diff options
author | Jim Meyering <jim@meyering.net> | 2011-06-10 11:57:20 +0200 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-06-13 14:22:51 +0100 |
commit | 4c8bab2f3ea68dbb0c2029501ec21b4f1ca9049d (patch) | |
tree | 7102d8573ce5ef5d0cc4befdccf6dc1213bf4846 | |
parent | e385e53f06d04ce7751da920dd28012dac2f9fad (diff) | |
download | libguestfs-4c8bab2f3ea68dbb0c2029501ec21b4f1ca9049d.tar.gz libguestfs-4c8bab2f3ea68dbb0c2029501ec21b4f1ca9049d.tar.xz libguestfs-4c8bab2f3ea68dbb0c2029501ec21b4f1ca9049d.zip |
build: include <string.h> for src/match.c's use of strlen
(cherry picked from commit daf55c07978cd29fe6675911bf76da0b056fdae1)
-rw-r--r-- | src/match.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/match.c b/src/match.c index c0078851..869850c1 100644 --- a/src/match.c +++ b/src/match.c @@ -20,6 +20,7 @@ #include <stdio.h> #include <stdlib.h> +#include <string.h> #ifdef HAVE_PCRE #include <pcre.h> |