Skip to content

Commit

Permalink
Give proper prototype to gitstrcasestr.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Oct 8, 2005
1 parent 33bb218 commit e1e9c25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ ifdef NEEDS_NSL
SIMPLE_LIB += -lnsl
endif
ifdef NO_STRCASESTR
DEFINES += -Dstrcasestr=gitstrcasestr
DEFINES += -Dstrcasestr=gitstrcasestr -DNO_STRCASESTR=1
LIB_OBJS += compat/strcasestr.o
endif

Expand Down
4 changes: 4 additions & 0 deletions mailinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit e1e9c25

Please sign in to comment.