From: Dave Brolley Date: Wed, 15 Apr 1998 12:35:16 +0000 (+0000) Subject: lex.c (init_parse): Now returns char* containing the filename. X-Git-Tag: prereleases/egcs-1.1-prerelease~1693 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a755ad1c04d8ae68e6397277027738b03b8671ab;p=thirdparty%2Fgcc.git lex.c (init_parse): Now returns char* containing the filename. Wed Apr 15 15:34:44 1998 Dave Brolley * lex.c (init_parse): Now returns char* containing the filename. From-SVN: r19228 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index dde9817261f8..c3f6f9aa5b32 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 74f05191f76e..76bf527289f3 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