From: Johannes Schindelin Date: Mon, 1 Jun 2009 06:41:45 +0000 (+0200) Subject: MinGW: fix warning about implicit declaration of _getch() X-Git-Tag: v1.6.4-rc0~63^2~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=28a559c0b5aa5bd0d318e06295719b9e677d5035;p=git.git MinGW: fix warning about implicit declaration of _getch() conio.h provides the declaration. Signed-off-by: Johannes Schindelin Signed-off-by: Steffen Prohaska Signed-off-by: Junio C Hamano --- diff --git a/compat/mingw.c b/compat/mingw.c index e190fddf4..12d0c2fd8 100644 --- a/compat/mingw.c +++ b/compat/mingw.c @@ -1,5 +1,6 @@ #include "../git-compat-util.h" #include "win32.h" +#include #include "../strbuf.h" unsigned int _CRT_fmode = _O_BINARY;