]> gcc.gnu.org Git - gcc.git/blobdiff - gcc/tree.c
Major cutover to using system.h:
[gcc.git] / gcc / tree.c
index bf16d4c9f20c5bbe806d41709c5e4855e24a8b41..53f2da5dae25d475128a6d8d537df20b1982cab2 100644 (file)
@@ -34,30 +34,18 @@ Boston, MA 02111-1307, USA.  */
    by all passes of the compiler.  */
 
 #include "config.h"
+#ifdef __STDC__
+#include <stdarg.h>
+#else
+#include <varargs.h>
+#endif
+#include "system.h"
 #include <setjmp.h>
 #include "flags.h"
 #include "tree.h"
 #include "except.h"
 #include "function.h"
 #include "obstack.h"
-#ifdef __STDC__
-#include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
-#include <stdio.h>
-
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
-
-#ifdef NEED_DECLARATION_FREE
-extern void free PROTO((void *));
-#endif
-
-#ifdef HAVE_STDLIB_H
-#include <stdlib.h>
-#endif
 
 #define obstack_chunk_alloc xmalloc
 #define obstack_chunk_free free
This page took 0.025894 seconds and 5 git commands to generate.