]> granicus.if.org Git - mutt/commitdiff
Add missing include <locale.h> to send.c and edit.c.
authorKevin McCarthy <kevin@8t8.us>
Tue, 23 Aug 2016 03:34:05 +0000 (20:34 -0700)
committerKevin McCarthy <kevin@8t8.us>
Tue, 23 Aug 2016 03:34:05 +0000 (20:34 -0700)
edit.c
send.c

diff --git a/edit.c b/edit.c
index 719c491e60e0f024fe3512ad4a9116c06853da13..b0e7cc7b081dec174e27df3d0b4ba026af09f41f 100644 (file)
--- a/edit.c
+++ b/edit.c
@@ -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 --git a/send.c b/send.c
index 49e4ec409e8064578683f915e2e7447e2f77ce66..e206bad06004634c3431da081b1da6452a11e84c 100644 (file)
--- a/send.c
+++ b/send.c
@@ -34,6 +34,7 @@
 
 #include <ctype.h>
 #include <stdlib.h>
+#include <locale.h>
 #include <unistd.h>
 #include <string.h>
 #include <errno.h>