diff options
-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" |