lex.c (init_parse): Now returns char* containing the filename.
authorDave Brolley <brolley@cygnus.com>
Wed, 15 Apr 1998 12:35:16 +0000 (12:35 +0000)
committerDave Brolley <brolley@gcc.gnu.org>
Wed, 15 Apr 1998 12:35:16 +0000 (08:35 -0400)
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

gcc/cp/ChangeLog
gcc/cp/lex.c

index dde9817..c3f6f9a 100644 (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>
 
index 74f0519..76bf527 100644 (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