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 <dirent.h>.

From-SVN: r24519
This commit is contained in:
Graham Stott 1999-01-06 09:36:50 -08:00 committed by Per Bothner
parent 0d34ccb7f2
commit 36635152c9

View File

@ -46,17 +46,9 @@ Some rules have been modified to support JDK1.1 inner classes
definitions and other extensions. */
%{
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <dirent.h>
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include "config.h"
#include "system.h"
#include <dirent.h>
#include "tree.h"
#include "rtl.h"
#include "obstack.h"