summaryrefslogtreecommitdiff
path: root/gcc/fix-header.c
diff options
context:
space:
mode:
authorneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 09:49:44 +0000
committerneil <neil@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-12 09:49:44 +0000
commit8e1df3e5ecab8eb95d6fd4a2282a33a593f88287 (patch)
treead4b14423ed428f1122edb7fc71803986eac83c9 /gcc/fix-header.c
parent1b152816e9d6911cf410b43ccb445a2af9fd3272 (diff)
downloadgcc-8e1df3e5ecab8eb95d6fd4a2282a33a593f88287.tar.gz
* fix-header.c (cb_file_change): Update prototype.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44824 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r--gcc/fix-header.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c
index 25d7a4f8233..baaabf85feb 100644
--- a/gcc/fix-header.c
+++ b/gcc/fix-header.c
@@ -199,7 +199,7 @@ static int inf_skip_spaces PARAMS ((int));
static int inf_read_upto PARAMS ((sstring *, int));
static int inf_scan_ident PARAMS ((sstring *, int));
static int check_protection PARAMS ((int *, int *));
-static void cb_file_change PARAMS ((cpp_reader *, const cpp_file_change *));
+static void cb_file_change PARAMS ((cpp_reader *, const struct line_map *));
static void
add_symbols (flags, names)
@@ -598,12 +598,12 @@ check_macro_names (pfile, names)
}
static void
-cb_file_change (pfile, fc)
+cb_file_change (pfile, map)
cpp_reader *pfile ATTRIBUTE_UNUSED;
- const cpp_file_change *fc;
+ const struct line_map *map;
{
/* Just keep track of current file name. */
- cur_file = fc->map->to_file;
+ cur_file = map->to_file;
}
static void