diff options
Diffstat (limited to 'gcc/c-common.h')
-rw-r--r-- | gcc/c-common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/c-common.h b/gcc/c-common.h index eca6cf137f0..7c5c30dab9d 100644 --- a/gcc/c-common.h +++ b/gcc/c-common.h @@ -378,6 +378,14 @@ extern c_language_kind c_language; /* Nonzero if prepreprocessing only. */ extern int flag_preprocess_only; +/* Nonzero if an ISO standard was selected. It rejects macros in the + user's namespace. */ +extern int flag_iso; + +/* Nonzero if -undef was given. It suppresses target built-in macros + and assertions. */ +extern int flag_undef; + /* Nonzero means give string constants the type `const char *', rather than `char *'. */ |