From fd944c82b484fee0514fefed73ce1622127976cc Mon Sep 17 00:00:00 2001 From: neil Date: Mon, 4 Dec 2000 07:32:04 +0000 Subject: * cppfiles.c (cpp_make_system_header): Take 2 booleans, and operate on current buffer. (cpp_read_file): Rename _cpp_read_file. * cpplib.c (do_line, do_pragma_system_header): Update calls to cpp_make_system_header. * fix-header.c: Similarly. * cpphash.h (_cpp_read_file): Move from... * cpplib.h: ... here. * cppinit.c (do_includes, cpp_start_read): Update appropriately. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37989 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/cppinit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/cppinit.c') diff --git a/gcc/cppinit.c b/gcc/cppinit.c index e3d12213867..7e5d7f6af67 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -931,7 +931,7 @@ do_includes (pfile, p, scan) /* Later: maybe update this to use the #include "" search path if cpp_read_file fails. */ - if (cpp_read_file (pfile, p->arg) && scan) + if (_cpp_read_file (pfile, p->arg) && scan) cpp_scan_buffer_nooutput (pfile, 0); q = p->next; free (p); @@ -1002,7 +1002,7 @@ cpp_start_read (pfile, fname) if (CPP_OPTION (pfile, out_fname) == NULL) CPP_OPTION (pfile, out_fname) = ""; - if (!cpp_read_file (pfile, fname)) + if (!_cpp_read_file (pfile, fname)) return 0; initialize_dependency_output (pfile); -- cgit v1.2.3