aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-08-20 20:18:38 +0000
committerRichard Stallman <rms@gnu.org>1992-08-20 20:18:38 +0000
commitbc04dacb8e09533b99944aea0e50615666bf35c9 (patch)
tree9ec6687242d870d4b84b4b9df52f14ac8408ef58
parenta23b64d54870b13c4399d92f86d49ecef829b968 (diff)
downloadgcc-bc04dacb8e09533b99944aea0e50615666bf35c9.zip
gcc-bc04dacb8e09533b99944aea0e50615666bf35c9.tar.gz
gcc-bc04dacb8e09533b99944aea0e50615666bf35c9.tar.bz2
Move include of stdio.h before output.h.
From-SVN: r1917
-rw-r--r--gcc/final.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 7c15200..ecf57b5 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -55,11 +55,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "conditions.h"
#include "flags.h"
#include "real.h"
-#include "output.h"
#include "hard-reg-set.h"
#include "defaults.h"
+
#include <stdio.h>
+#include "output.h"
+
/* Get N_SLINE and N_SOL from stab.h if we can expect the file to exist. */
#if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
#if defined (USG) || defined (NO_STAB_H)