diff options
author | Dave Brolley <brolley@cygnus.com> | 1998-04-15 12:36:14 +0000 |
---|---|---|
committer | Dave Brolley <brolley@gcc.gnu.org> | 1998-04-15 08:36:14 -0400 |
commit | 71b5e532651be5b2ac1fed0fad69b07c11072438 (patch) | |
tree | 6d30f9e35d44b88d524431ebc024ecf135fb3483 /gcc | |
parent | a755ad1c04d8ae68e6397277027738b03b8671ab (diff) | |
download | gcc-71b5e532651be5b2ac1fed0fad69b07c11072438.zip gcc-71b5e532651be5b2ac1fed0fad69b07c11072438.tar.gz gcc-71b5e532651be5b2ac1fed0fad69b07c11072438.tar.bz2 |
com.c (init_parse): Now returns char* containing filename;
Tue Apr 14 15:51:37 1998 Dave Brolley <brolley@cygnus.com>
* com.c (init_parse): Now returns char* containing filename;
From-SVN: r19229
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/f/ChangeLog.egcs | 4 | ||||
-rw-r--r-- | gcc/f/com.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/f/ChangeLog.egcs b/gcc/f/ChangeLog.egcs index ed25735a..7caac66 100644 --- a/gcc/f/ChangeLog.egcs +++ b/gcc/f/ChangeLog.egcs @@ -1,3 +1,7 @@ +Tue Apr 14 15:51:37 1998 Dave Brolley <brolley@cygnus.com> + + * com.c (init_parse): Now returns char* containing filename; + Thu Apr 9 00:18:44 1998 Dave Brolley (brolley@cygnus.com) * com.c (finput): New variable. diff --git a/gcc/f/com.c b/gcc/f/com.c index 1f58370..1d6c0ea 100644 --- a/gcc/f/com.c +++ b/gcc/f/com.c @@ -14797,7 +14797,7 @@ init_decl_processing () ffe_init_0 (); } -void +char * init_parse (filename) char *filename; { @@ -14826,6 +14826,8 @@ init_parse (filename) #if BUILT_FOR_270 print_error_function = lang_print_error_function; #endif + + return filename; } void |