aboutsummaryrefslogtreecommitdiff
path: root/libcpp/init.c
diff options
context:
space:
mode:
authorGabriel Dos Reis <gdr@integrable-solutions.net>2005-01-02 01:32:21 +0000
committerGabriel Dos Reis <gdr@gcc.gnu.org>2005-01-02 01:32:21 +0000
commita2566ae98d9df2df51b651dc404bae5d2ff54944 (patch)
treeebb05e721bd9965754a245ca7e4348b6356e87c5 /libcpp/init.c
parent302904495d01ba8de1061edb1e2aec359ddc83a7 (diff)
downloadgcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.zip
gcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.tar.gz
gcc-a2566ae98d9df2df51b651dc404bae5d2ff54944.tar.bz2
internal.h: Update references to Cpp lib filenames.
* internal.h: Update references to Cpp lib filenames. * directives.c: Likewise. * init.c: Likewise. * macro.c: Likewise. * traditional.c: Likewise. From-SVN: r92799
Diffstat (limited to 'libcpp/init.c')
-rw-r--r--libcpp/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcpp/init.c b/libcpp/init.c
index b2be19a..c3c738e 100644
--- a/libcpp/init.c
+++ b/libcpp/init.c
@@ -275,7 +275,7 @@ cpp_destroy (cpp_reader *pfile)
There are two tables of these. builtin_array holds all the
"builtin" macros: these are handled by builtin_macro() in
- cppmacro.c. Builtin is somewhat of a misnomer -- the property of
+ macro.c. Builtin is somewhat of a misnomer -- the property of
interest is that these macros require special code to compute their
expansions. The value is a "builtin_type" enumerator.
@@ -567,7 +567,7 @@ cpp_finish (cpp_reader *pfile, FILE *deps_stream)
if (CPP_OPTION (pfile, warn_unused_macros))
cpp_forall_identifiers (pfile, _cpp_warn_if_unused_macro, NULL);
- /* cpplex.c leaves the final buffer on the stack. This it so that
+ /* lex.c leaves the final buffer on the stack. This it so that
it returns an unending stream of CPP_EOFs to the client. If we
popped the buffer, we'd dereference a NULL buffer pointer and
segfault. It's nice to allow the client to do worry-free excess