changeset: 6770:d500c2fd861d user: Kevin McCarthy <[email protected]> date: Mon Aug 22 20:34:05 2016 -0700 link: http://dev.mutt.org/hg/mutt/rev/d500c2fd861d
Add missing include <locale.h> to send.c and edit.c. diffs (22 lines): diff -r 0ae083fb719c -r d500c2fd861d edit.c --- a/edit.c Mon Aug 22 20:04:59 2016 -0700 +++ b/edit.c Mon Aug 22 20:34:05 2016 -0700 @@ -29,6 +29,7 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> +#include <locale.h> #include <ctype.h> #include <sys/stat.h> #include <fcntl.h> diff -r 0ae083fb719c -r d500c2fd861d send.c --- a/send.c Mon Aug 22 20:04:59 2016 -0700 +++ b/send.c Mon Aug 22 20:34:05 2016 -0700 @@ -34,6 +34,7 @@ #include <ctype.h> #include <stdlib.h> +#include <locale.h> #include <unistd.h> #include <string.h> #include <errno.h>
