diff options
| author | Ulrich Drepper <drepper@gcc.gnu.org> | 2000-01-29 18:59:40 +0000 |
|---|---|---|
| committer | Ulrich Drepper <drepper@gcc.gnu.org> | 2000-01-29 18:59:40 +0000 |
| commit | 3194854770602ec204dbfb8b3d469b56d5ef4d9c (patch) | |
| tree | e93db4a12bbae12f8654d3ebe3b73a3c32c6088a /gcc/cpplib.h | |
| parent | 10b52f46188f1e93b43a435c6d2f589a974555fe (diff) | |
| download | gcc-3194854770602ec204dbfb8b3d469b56d5ef4d9c.zip gcc-3194854770602ec204dbfb8b3d469b56d5ef4d9c.tar.gz gcc-3194854770602ec204dbfb8b3d469b56d5ef4d9c.tar.bz2 | |
Adjust variable names, comments, help strings to c99.
From-SVN: r31689
Diffstat (limited to 'gcc/cpplib.h')
| -rw-r--r-- | gcc/cpplib.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 29514a1..882f462 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -114,7 +114,7 @@ struct cpp_buffer parse_underflow_t underflow; parse_cleanup_t cleanup; void *data; - + /* Value of if_stack at start of this file. Used to prohibit unmatched #endif (etc) in an include file. */ struct if_stack *if_stack; @@ -185,7 +185,7 @@ struct cpp_reader /* Hash table of macros and assertions. See cpphash.c */ #define HASHSIZE 1403 struct hashnode **hashtab; - + /* Hash table of other included files. See cppfiles.c */ #define ALL_INCLUDE_HASHSIZE 71 struct include_hash *all_include_files[ALL_INCLUDE_HASHSIZE]; @@ -465,9 +465,9 @@ struct cpp_options { /* Nonzero for the 1989 C Standard, including corrigenda and amendments. */ char c89; - /* Nonzero for the 199x C Standard, including corrigenda and amendments. */ - char c9x; - + /* Nonzero for the 1999 C Standard, including corrigenda and amendments. */ + char c99; + /* Nonzero means give all the error messages the ANSI standard requires. */ char pedantic; @@ -801,9 +801,8 @@ extern struct include_hash *include_hash PARAMS ((cpp_reader *, const char *, in #define INCLUDE_LEN_FUDGE 0 #endif - + #ifdef __cplusplus } #endif #endif /* __GCC_CPPLIB__ */ - |
