Commit a755ad1c by Dave Brolley Committed by Dave Brolley

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
parent 5c60e5c0
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> Wed Apr 15 13:20:06 1998 John Carr <jfc@mit.edu>
Jeff Law <law@cygnus.com> Jeff Law <law@cygnus.com>
......
...@@ -455,7 +455,7 @@ init_cpp_parse () ...@@ -455,7 +455,7 @@ init_cpp_parse ()
return token_count; return token_count;
} }
void char *
init_parse (filename) init_parse (filename)
char *filename; char *filename;
{ {
...@@ -890,6 +890,8 @@ init_parse (filename) ...@@ -890,6 +890,8 @@ init_parse (filename)
token_count = init_cpp_parse (); token_count = init_cpp_parse ();
interface_unknown = 1; interface_unknown = 1;
return filename;
} }
void 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