lex.c (init_parse): Now returns char* containing the filename.

Wed Apr 15 15:34:44 1998  Dave Brolley  <brolley@cygnus.com>
	* lex.c (init_parse): Now returns char* containing the filename.

From-SVN: r19228
This commit is contained in:
Dave Brolley 1998-04-15 12:35:16 +00:00 committed by Dave Brolley
parent 5c60e5c007
commit a755ad1c04
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Wed Apr 15 15:34:44 1998 Dave Brolley <brolley@cygnus.com>
* lex.c (init_parse): Now returns char* containing the filename.
Wed Apr 15 13:20:06 1998 John Carr <jfc@mit.edu>
Jeff Law <law@cygnus.com>

View File

@ -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