* raise-gcc.c: Move tsystem.h before tm.h.
authorRainer Orth <ro@TechFak.Uni-Bielefeld.DE>
Fri, 25 Jul 2008 12:27:29 +0000 (12:27 +0000)
committerRainer Orth <ro@gcc.gnu.org>
Fri, 25 Jul 2008 12:27:29 +0000 (12:27 +0000)
From-SVN: r138139

gcc/ada/ChangeLog
gcc/ada/raise-gcc.c

index bb42b64460a50f479dea2802a13c44b70e929046..74d0ff2b02456f8135062d10ab76928fa3338388 100644 (file)
@@ -1,3 +1,7 @@
+2008-07-25  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * raise-gcc.c: Move tsystem.h before tm.h.
+
 2008-07-20  Arnaud Charlet  <charlet@adacore.com>
 
        * gnathtml.pl: New file.
index bb25ea631d1722cb01139eb08337988d916b3252..e2662e14f23f0d40b8fe7a89bd4bb5989065189b 100644 (file)
@@ -6,7 +6,7 @@
  *                                                                          *
  *                          C Implementation File                           *
  *                                                                          *
- *             Copyright (C) 1992-2007, Free Software Foundation, Inc.      *
+ *             Copyright (C) 1992-2008, Free Software Foundation, Inc.      *
  *                                                                          *
  * GNAT is free software;  you can  redistribute it  and/or modify it under *
  * terms of the  GNU General Public License as published  by the Free Soft- *
@@ -35,6 +35,7 @@
 
 #ifdef IN_RTS
 #include "tconfig.h"
+#include "tsystem.h"
 /* In the top-of-tree GCC, tconfig does not include tm.h, but in GCC 3.2
    it does.  To avoid branching raise.c just for that purpose, we kludge by
    looking for a symbol always defined by tm.h and if it's not defined,
@@ -43,7 +44,6 @@
 #include "coretypes.h"
 #include "tm.h"
 #endif
-#include "tsystem.h"
 #include <sys/stat.h>
 #include <stdarg.h>
 typedef char bool;