mirror of
https://github.com/git/git.git
synced 2026-02-25 09:31:11 +00:00
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>
6 lines
94 B
C
6 lines
94 B
C
#include "../git-compat-util.h"
|
|
#include "win32.h"
|
|
#include "../strbuf.h"
|
|
|
|
#include "mingw.c"
|