diff options
author | Johannes Sixt <j6t@kdbg.org> | 2010-04-19 09:37:20 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-19 01:28:21 -0700 |
commit | b75686455c0524f167b6a878c124df40db34b325 (patch) | |
tree | 1c4178347691d6f4252eb601671943662001c9f9 | |
parent | 476386858c70c1457bf32ff6d93b2100f03513fc (diff) | |
download | git-b75686455c0524f167b6a878c124df40db34b325.tar.gz git-b75686455c0524f167b6a878c124df40db34b325.tar.xz |
MSVC: Fix build by adding missing termios.h dummy
A use of this header file was introduced in eb80042 (Add missing #include
to support TIOCGWINSZ on Solaris, 2010-01-11).
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | compat/vcbuild/include/termios.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compat/vcbuild/include/termios.h b/compat/vcbuild/include/termios.h new file mode 100644 index 000000000..0d8552a2c --- /dev/null +++ b/compat/vcbuild/include/termios.h @@ -0,0 +1 @@ +/* Intentionally empty file to support building git with MSVC */ |