summaryrefslogtreecommitdiff
path: root/gcc/main.c
diff options
context:
space:
mode:
authorkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-20 11:24:36 +0000
committerkenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4>2001-10-20 11:24:36 +0000
commitaaaca12287faaf58738ab5f9baeef9b1b3eb3e55 (patch)
treeb5fcca3bcfe2b0a20b677bdf0d8573d81fe331d1 /gcc/main.c
parentbcbaca1b274e2641df803135dcfe0aebe97e36cc (diff)
downloadgcc-aaaca12287faaf58738ab5f9baeef9b1b3eb3e55.tar.gz
* toplev.h (struct lang_hooks): HONOR_READONLY now bool.
* main.c: Include config.h and system.h, but not ansidecl.h. * Makefile.in (main.o): Update accordingly. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@46376 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/main.c')
-rw-r--r--gcc/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/main.c b/gcc/main.c
index 1513712d629..49418bd05d7 100644
--- a/gcc/main.c
+++ b/gcc/main.c
@@ -17,7 +17,8 @@ along with GCC; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
-#include "ansidecl.h"
+#include "config.h"
+#include "system.h"
#include "toplev.h"
int main PARAMS ((int argc, char **argv));