* tui/tui.c: Move system header includes after local includes.
authorJoel Brobecker <brobecker@gnat.com>
Thu, 26 Feb 2004 02:08:04 +0000 (02:08 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Thu, 26 Feb 2004 02:08:04 +0000 (02:08 +0000)
        Fixes a build failure on solaris systems.

gdb/ChangeLog
gdb/tui/tui.c

index 8c3d5ab0cf9e732f10d4d60657e6b0e997e45287..f8d4d3cf8c34fb0a940bd6577e3343a52638aab9 100644 (file)
@@ -1,3 +1,9 @@
+2004-02-25  J. Brobecker  <brobecker@gnat.com>
+
+       From Peter Schauer <schauer@pdf.de>:
+       * tui/tui.c: Move system header includes after local includes.
+       Fixes a build failure on solaris systems.
+
 2004-02-25  J. Brobecker  <brobecker@gnat.com>
 
        * configure.in: Refine the previous change.
index 4d1e55b9f350a67fa5457cd1722fd45e6fdcae92..2c12621a532c2c8b8bf83463ba23260670695e7f 100644 (file)
    Foundation, Inc., 59 Temple Place - Suite 330,
    Boston, MA 02111-1307, USA.  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <ctype.h>
-#ifdef HAVE_TERM_H
-#include <term.h>
-#endif
-#include <signal.h>
-#include <fcntl.h>
-#if 0
-#include <termio.h>
-#endif
-#include <setjmp.h>
 #include "defs.h"
 #include "gdbcmd.h"
 #include "tui/tui.h"
 #include "symtab.h"
 #include "source.h"
 
+#include <stdio.h>
+#include <stdlib.h>
+#include <ctype.h>
+#ifdef HAVE_TERM_H
+#include <term.h>
+#endif
+#include <signal.h>
+#include <fcntl.h>
+#if 0
+#include <termio.h>
+#endif
+#include <setjmp.h>
+
 #include "gdb_curses.h"
 
 /* Tells whether the TUI is active or not.  */
This page took 0.028144 seconds and 4 git commands to generate.