Commit 21c38ecb by Neil Booth Committed by Neil Booth

* fix-header.c (cb_file_change): Update prototype.

From-SVN: r44824
parent fe91fda8
2001-08-12 Neil Booth <neil@daikokuya.demon.co.uk>
* fix-header.c (cb_file_change): Update prototype.
2001-08-11 Zack Weinberg <zackw@panix.com> 2001-08-11 Zack Weinberg <zackw@panix.com>
* toplev.c (set_float_handler): Make static. * toplev.c (set_float_handler): Make static.
......
...@@ -199,7 +199,7 @@ static int inf_skip_spaces PARAMS ((int)); ...@@ -199,7 +199,7 @@ static int inf_skip_spaces PARAMS ((int));
static int inf_read_upto PARAMS ((sstring *, int)); static int inf_read_upto PARAMS ((sstring *, int));
static int inf_scan_ident PARAMS ((sstring *, int)); static int inf_scan_ident PARAMS ((sstring *, int));
static int check_protection PARAMS ((int *, 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 static void
add_symbols (flags, names) add_symbols (flags, names)
...@@ -598,12 +598,12 @@ check_macro_names (pfile, names) ...@@ -598,12 +598,12 @@ check_macro_names (pfile, names)
} }
static void static void
cb_file_change (pfile, fc) cb_file_change (pfile, map)
cpp_reader *pfile ATTRIBUTE_UNUSED; cpp_reader *pfile ATTRIBUTE_UNUSED;
const cpp_file_change *fc; const struct line_map *map;
{ {
/* Just keep track of current file name. */ /* Just keep track of current file name. */
cur_file = fc->map->to_file; cur_file = map->to_file;
} }
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment