diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-01-18 18:12:53 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-01-18 18:12:53 -0800 |
commit | 243157506725befcf7c7ed7e79ca4708b63f3a65 (patch) | |
tree | 11d4413401eb1bfc4f4b4d34a694b484621ceb9b | |
parent | 3cd02df46a56c5c006163e72d0816aef1ba4a00e (diff) | |
parent | eb80042c6a631aee74bd0d1b1dd845784e9788cd (diff) | |
download | git-243157506725befcf7c7ed7e79ca4708b63f3a65.tar.gz git-243157506725befcf7c7ed7e79ca4708b63f3a65.tar.xz |
Merge branch 'nd/include-termios-for-osol'
* nd/include-termios-for-osol:
Add missing #include to support TIOCGWINSZ on Solaris
-rw-r--r-- | git-compat-util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 5c596875c..a979e41c1 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -96,6 +96,7 @@ #include <sys/poll.h> #include <sys/socket.h> #include <sys/ioctl.h> +#include <termios.h> #ifndef NO_SYS_SELECT_H #include <sys/select.h> #endif |