* locate/bigram.c: Include <locale.h>. --- ChangeLog | 5 +++++ locate/bigram.c | 1 + 2 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 9945cea..827ea60 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-06-13 James Youngman <[email protected]> + + Fix compilation failure in bigram.c by including <locale.h>. + * locate/bigram.c: Include <locale.h>. + 2011-06-12 James Youngman <[email protected]> Split exec-related code into a new file, exec.c diff --git a/locate/bigram.c b/locate/bigram.c index fb17a06..477e392 100644 --- a/locate/bigram.c +++ b/locate/bigram.c @@ -32,6 +32,7 @@ #include <config.h> #include <stdio.h> +#include <locale.h> #include <string.h> #include <stdlib.h> -- 1.7.2.5
