diff options
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 937e6047693..29f20d7cb65 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -416,10 +416,9 @@ struct cpp_callbacks /* Name under which this program was invoked. */ extern const char *progname; -/* Where does this buffer come from? A faked include, a source file, - a builtin macro, a command-line option, or a _Pragma operator. */ -enum cpp_buffer_type {BUF_FAKE, BUF_FILE, BUF_BUILTIN, - BUF_CL_OPTION, BUF_PRAGMA}; +/* Where does this buffer come from? A source file, a builtin macro, + a command-line option, or a _Pragma operator. */ +enum cpp_buffer_type {BUF_FILE, BUF_BUILTIN, BUF_CL_OPTION, BUF_PRAGMA}; /* The structure of a node in the hash table. The hash table has entries for all identifiers: either macros defined by #define |