diff options
author | kan <kan@FreeBSD.org> | 2004-07-28 03:11:36 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2004-07-28 03:11:36 +0000 |
commit | e0020c9fe3d2c91658ad0f59cb6a55c44f909db3 (patch) | |
tree | b406472295ae0b130894cc19f02f43b36157fec6 /contrib/gcc/f/equiv.c | |
parent | b754d213ab76dee1e7bcd5acb4becd5658c0ca99 (diff) | |
parent | 5e00ec74d8ce58f99801200d4d3d0412c7cc1b28 (diff) | |
download | FreeBSD-src-e0020c9fe3d2c91658ad0f59cb6a55c44f909db3.zip FreeBSD-src-e0020c9fe3d2c91658ad0f59cb6a55c44f909db3.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r132718,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/gcc/f/equiv.c')
-rw-r--r-- | contrib/gcc/f/equiv.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/gcc/f/equiv.c b/contrib/gcc/f/equiv.c index f58de9c..bd7ac6d 100644 --- a/contrib/gcc/f/equiv.c +++ b/contrib/gcc/f/equiv.c @@ -1,5 +1,6 @@ /* equiv.c -- Implementation File (module.c template V1.0) - Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 1997, 1998, 2003 + Free Software Foundation, Inc. Contributed by James Craig Burley. This file is part of GNU Fortran. @@ -918,7 +919,7 @@ ffeequiv_add (ffeequiv eq, ffebld list, ffelexToken t) ffeequiv_exec_transition(); */ void -ffeequiv_exec_transition () +ffeequiv_exec_transition (void) { while (ffeequiv_list_.first != (ffeequiv) &ffeequiv_list_.first) ffeequiv_layout_local_ (ffeequiv_list_.first); @@ -931,7 +932,7 @@ ffeequiv_exec_transition () Initializes the list of equivalences. */ void -ffeequiv_init_2 () +ffeequiv_init_2 (void) { ffeequiv_list_.first = (ffeequiv) &ffeequiv_list_.first; ffeequiv_list_.last = (ffeequiv) &ffeequiv_list_.first; @@ -1312,7 +1313,7 @@ ffeequiv_merge (ffeequiv eq1, ffeequiv eq2, ffelexToken t) objects. */ ffeequiv -ffeequiv_new () +ffeequiv_new (void) { ffeequiv eq; |