diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-08-18 23:20:47 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-08-18 23:20:47 +0000 |
commit | 6d7fbb5a8bb4cf6f810762ee908f25dc13f99c99 (patch) | |
tree | 1aed4787d7da5cae18fdac9233dcd0f0879b0be2 | |
parent | 92d1e3318675011dcd5dc89e25312daf0f109857 (diff) | |
download | gdb-6d7fbb5a8bb4cf6f810762ee908f25dc13f99c99.zip gdb-6d7fbb5a8bb4cf6f810762ee908f25dc13f99c99.tar.gz gdb-6d7fbb5a8bb4cf6f810762ee908f25dc13f99c99.tar.bz2 |
Fix PR gdb/655
* tui.c: Disable <termio.h> include.
-rw-r--r-- | gdb/tui/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/tui/tui.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/tui/ChangeLog b/gdb/tui/ChangeLog index d278c6a..16d4835 100644 --- a/gdb/tui/ChangeLog +++ b/gdb/tui/ChangeLog @@ -1,3 +1,8 @@ +2002-08-18 Daniel Jacobowitz <drow@mvista.com> + + Fix PR gdb/655 + * tui.c: Disable <termio.h> include. + 2002-03-15 Andrew Cagney <ac131313@redhat.com> * tui-out.c (XMALLOC): Delete macro. Update copyright. diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 7912efc..6b132b7 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -48,7 +48,9 @@ #endif #include <signal.h> #include <fcntl.h> +#if 0 #include <termio.h> +#endif #include <setjmp.h> #include "defs.h" #include "gdbcmd.h" |