From a755ad1c04d8ae68e6397277027738b03b8671ab Mon Sep 17 00:00:00 2001 From: Dave Brolley Date: Wed, 15 Apr 1998 12:35:16 +0000 Subject: [PATCH] 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 --- gcc/cp/ChangeLog | 4 ++++ gcc/cp/lex.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 -- 2.30.2