diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-06-22 15:21:39 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-06-22 15:21:39 +0000 |
commit | 96ec9981bbd23e402401c4e9912014498938fb57 (patch) | |
tree | c70ab7ca030f044443d7b31ebffbc11dd575f1e8 /gdb/tui/tui.c | |
parent | db5a5748d7bd2246614aaa8813367bfafad7ea51 (diff) | |
download | gdb-96ec9981bbd23e402401c4e9912014498938fb57.zip gdb-96ec9981bbd23e402401c4e9912014498938fb57.tar.gz gdb-96ec9981bbd23e402401c4e9912014498938fb57.tar.bz2 |
* tui-hooks.c: Update include order.
* tui.c: Likewise.
* tuiCommand.c: Likewise.
* tuiData.c: Likewise.
* tuiDataWin.c: Likewise.
* tuiDisassem.c: Likewise.
* tuiGeneralWin.c: Likewise.
* tuiIO.c: Likewise.
* tuiLayout.c: Likewise.
* tuiRegs.c: Likewise.
* tuiSource.c: Likewise.
* tuiSourceWin.c: Likewise.
* tuiStack.c: Likewise.
* tuiWin.c: Likewise.
Diffstat (limited to 'gdb/tui/tui.c')
-rw-r--r-- | gdb/tui/tui.c | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/gdb/tui/tui.c b/gdb/tui/tui.c index 517cf46..7e665d5 100644 --- a/gdb/tui/tui.c +++ b/gdb/tui/tui.c @@ -1,6 +1,6 @@ /* General functions for the WDB TUI. - Copyright 1998, 1999, 2000, 2001, 2002 Free Software Foundation, + Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. Contributed by Hewlett-Packard Company. @@ -22,23 +22,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* FIXME: cagney/2002-02-28: The GDB coding standard indicates that - "defs.h" should be included first. Unfortunatly some systems - (currently Debian GNU/Linux) include the <stdbool.h> via <curses.h> - and they clash with "bfd.h"'s definiton of true/false. The correct - fix is to remove true/false from "bfd.h", however, until that - happens, hack around it by including "config.h" and <curses.h> - first. */ - -#include "config.h" -#ifdef HAVE_NCURSES_H -#include <ncurses.h> -#else -#ifdef HAVE_CURSES_H -#include <curses.h> -#endif -#endif - #include <stdio.h> #include <stdlib.h> #include <ctype.h> @@ -70,6 +53,14 @@ #include "symtab.h" #include "source.h" +#ifdef HAVE_NCURSES_H +#include <ncurses.h> +#else +#ifdef HAVE_CURSES_H +#include <curses.h> +#endif +#endif + /* Tells whether the TUI is active or not. */ int tui_active = 0; static int tui_finish_init = 1; |