summaryrefslogtreecommitdiff
path: root/mailinfo.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2005-10-08 21:54:41 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-10-08 21:54:41 (GMT)
commite1e9c254660244756a72ecfcfff81c15fb32a6e9 (patch)
tree169670b42ad3ba9768eba780dcb8ad2c4dc64945 /mailinfo.c
parent33bb218e9d7299f6ed06177c65d357ec81954ca9 (diff)
downloadgit-e1e9c254660244756a72ecfcfff81c15fb32a6e9.zip
git-e1e9c254660244756a72ecfcfff81c15fb32a6e9.tar.gz
git-e1e9c254660244756a72ecfcfff81c15fb32a6e9.tar.bz2
Give proper prototype to gitstrcasestr.
Borrow from NO_MMAP patch by Johannes, squelch compiler warnings by declaring gitstrcasestr() when we use it. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'mailinfo.c')
-rw-r--r--mailinfo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mailinfo.c b/mailinfo.c
index df470bb..cb853df 100644
--- a/mailinfo.c
+++ b/mailinfo.c
@@ -9,6 +9,10 @@
#include <ctype.h>
#include <iconv.h>
+#ifdef NO_STRCASESTR
+extern char *gitstrcasestr(const char *haystack, const char *needle);
+#endif
+
static FILE *cmitmsg, *patchfile;
static int keep_subject = 0;