Files
git/compat/msvc.c
Erik Faye-Lund 911808f4dc compat/terminal: header-fixup
getch is declared in conio.h, which was only included from
compat/mingw.c and compat/msvc.c.

Fix this, by moving the inclusion of getch to git-compat-util.h
instead.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
2012-10-22 13:31:43 +01:00

6 lines
94 B
C

#include "../git-compat-util.h"
#include "win32.h"
#include "../strbuf.h"
#include "mingw.c"