From 922479330da4e69c21f009c322c425bcf490715a Mon Sep 17 00:00:00 2001 From: ghazi Date: Mon, 6 Apr 1998 14:01:33 +0000 Subject: More system.h cutover patches: * c-parse.in: Include system.h, and remove stuff now made redundant. * cccp.c: Likewise. * cexp.y: Likewise. * protoize.c: Likewise. Properly check for cpp stringification. * Makefile.in (c-parse.o, cccp.o, cexp.o, protoize.o, unprotoize.o): Depend on system.h. * objc/Make-lang.in (objc-parse.o): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19020 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-parse.y | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'gcc/c-parse.y') diff --git a/gcc/c-parse.y b/gcc/c-parse.y index ac9138df393..aba326d02b9 100644 --- a/gcc/c-parse.y +++ b/gcc/c-parse.y @@ -55,9 +55,7 @@ State 434 contains 2 shift/reduce conflicts. (Four ways to parse this.) */ %{ #include "config.h" - -#include -#include +#include "system.h" #include #include "tree.h" @@ -68,7 +66,6 @@ State 434 contains 2 shift/reduce conflicts. (Four ways to parse this.) */ #include "output.h" #ifdef MULTIBYTE_CHARS -#include #include #endif @@ -77,10 +74,6 @@ State 434 contains 2 shift/reduce conflicts. (Four ways to parse this.) */ definition here. */ char *language_string = "GNU C"; -#ifndef errno -extern int errno; -#endif - /* Like YYERROR but do call yyerror. */ #define YYERROR1 { yyerror ("syntax error"); YYERROR; } -- cgit v1.2.3