diff options
Diffstat (limited to 'contrib/gcc/c-common.h')
-rw-r--r-- | contrib/gcc/c-common.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/contrib/gcc/c-common.h b/contrib/gcc/c-common.h index 1f59ebd..bdb9e6f 100644 --- a/contrib/gcc/c-common.h +++ b/contrib/gcc/c-common.h @@ -423,6 +423,9 @@ extern int warn_cast_qual; extern int warn_missing_format_attribute; +/* Nonzero means do not warn that K&R style main() is not a function prototype. */ +extern int flag_bsd_no_warn_kr_main; + /* Nonzero means warn about sizeof(function) or addition/subtraction of function pointers. */ @@ -523,6 +526,10 @@ extern int flag_isoc94; extern int flag_isoc99; +/* Nonzero means allow the BSD kernel printf enhancments. */ + +extern int flag_bsd_format; + /* Nonzero means that we have builtin functions, and main is an int */ extern int flag_hosted; |