diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index dde9817261f..c3f6f9aa5b3 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,7 @@ +Wed Apr 15 15:34:44 1998 Dave Brolley + + * lex.c (init_parse): Now returns char* containing the filename. + Wed Apr 15 13:20:06 1998 John Carr Jeff Law diff --git a/gcc/cp/lex.c b/gcc/cp/lex.c index 74f05191f76..76bf527289f 100644 --- a/gcc/cp/lex.c +++ b/gcc/cp/lex.c @@ -455,7 +455,7 @@ init_cpp_parse () return token_count; } -void +char * init_parse (filename) char *filename; { @@ -890,6 +890,8 @@ init_parse (filename) token_count = init_cpp_parse (); interface_unknown = 1; + + return filename; } void