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-10 12:32:21 +0100 |
commit | daf55c07978cd29fe6675911bf76da0b056fdae1 (patch) | |
tree | 2d1342c49e9992dd99487bbf18d6ed66c847001b /src | |
parent | 343ba6d482643882c3ab3a529f3d882ee1ba36f9 (diff) | |
download | libguestfs-daf55c07978cd29fe6675911bf76da0b056fdae1.tar.gz libguestfs-daf55c07978cd29fe6675911bf76da0b056fdae1.tar.xz libguestfs-daf55c07978cd29fe6675911bf76da0b056fdae1.zip |
build: include <string.h> for src/match.c's use of strlen
Diffstat (limited to 'src')
-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> |