From 36635152c9a0ee8d0785a2ac79c734fda79594d4 Mon Sep 17 00:00:00 2001 From: Graham Stott Date: Wed, 6 Jan 1999 09:36:50 -0800 Subject: [PATCH] parse.y: include system.h instead of including standard headers directly with the... 8 * parse.y : include system.h instead of including standard headers directly with the exception of . From-SVN: r24519 --- gcc/java/parse.y | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 60065d248e6..fe7c7759229 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -46,17 +46,9 @@ Some rules have been modified to support JDK1.1 inner classes definitions and other extensions. */ %{ -#include -#include -#include -#include -#ifdef __STDC__ -#include -#else -#include -#endif - #include "config.h" +#include "system.h" +#include #include "tree.h" #include "rtl.h" #include "obstack.h"