Merge FreeBSD changes into GCC 3.3.1-prerelease.

Move FreeBSD specific flag variables from c-decl.c here.
This commit is contained in:
Alexander Kabaev 2003-07-11 06:00:50 +00:00
parent 8a50130bbb
commit 46b370ef71
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117431

View File

@ -260,6 +260,10 @@ int warn_missing_format_attribute;
int warn_pointer_arith;
/* Nonzero means do not warn that K&R style main() is not a function prototype. */
int flag_bsd_no_warn_kr_main;
/* Nonzero means warn for any global function def
without separate previous prototype decl. */
@ -355,6 +359,10 @@ int flag_isoc94;
int flag_isoc99;
/* Nonzero means allow the BSD kernel printf enhancements. */
int flag_bsd_format;
/* Nonzero means that we have builtin functions, and main is an int */
int flag_hosted = 1;