]> gcc.gnu.org Git - gcc.git/commitdiff
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 dde9817261f865a0b8ebedcf0e55b2f47254d565..c3f6f9aa5b3298e59e41734d305f8ac7e9373fd4 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 74f05191f76eacd7bac2f19c263c0239cea2fdad..76bf527289f3219ccffa175196d6f8f0731dc054 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
This page took 0.080818 seconds and 5 git commands to generate.