diff options
author | Alexander Kabaev <kan@FreeBSD.org> | 2002-09-01 20:38:57 +0000 |
---|---|---|
committer | Alexander Kabaev <kan@FreeBSD.org> | 2002-09-01 20:38:57 +0000 |
commit | bb3c979bf518abbe971bd277250c68a3ec567b59 (patch) | |
tree | c6857d31c36dbd89a881b0229bf38b062797d413 /contrib/gcc/cpplib.h | |
parent | 00db7afddd93b9febd88ed0a8567dc3201852b70 (diff) |
Notes
Diffstat (limited to 'contrib/gcc/cpplib.h')
-rw-r--r-- | contrib/gcc/cpplib.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/gcc/cpplib.h b/contrib/gcc/cpplib.h index edd4b5a45729f..c21ada05cfd4e 100644 --- a/contrib/gcc/cpplib.h +++ b/contrib/gcc/cpplib.h @@ -279,6 +279,9 @@ struct cpp_options /* If true, fopen (deps_file, "a") else fopen (deps_file, "w"). */ unsigned char print_deps_append; + /* If true, no dependency is generated on the main file. */ + unsigned char deps_ignore_main_file; + /* Nonzero means print names of header files (-H). */ unsigned char print_include_names; @@ -335,6 +338,9 @@ struct cpp_options /* Nonzero for the 1999 C Standard, including corrigenda and amendments. */ unsigned char c99; + /* Nonzero if conforming to some particular standard. */ + unsigned char std; + /* Nonzero means give all the error messages the ANSI standard requires. */ unsigned char pedantic; |