diff options
Diffstat (limited to 'contrib/gcc/f/stw.c')
-rw-r--r-- | contrib/gcc/f/stw.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/gcc/f/stw.c b/contrib/gcc/f/stw.c index 90a19a5..058b1eb 100644 --- a/contrib/gcc/f/stw.c +++ b/contrib/gcc/f/stw.c @@ -1,6 +1,6 @@ /* stw.c -- Implementation File (module.c template V1.0) Copyright (C) 1995 Free Software Foundation, Inc. - Contributed by James Craig Burley (burley@gnu.org). + Contributed by James Craig Burley. This file is part of GNU Fortran. @@ -74,7 +74,7 @@ ffestw ffestw_stack_top_ = NULL; ffestw_display_state(); */ void -ffestw_display_state () +ffestw_display_state (void) { assert (ffestw_stack_top_ != NULL); @@ -320,7 +320,7 @@ ffestw_kill (ffestw b) b = ffestw_new(); */ ffestw -ffestw_new () +ffestw_new (void) { ffestw b; @@ -335,7 +335,7 @@ ffestw_new () ffestw_pop(); */ ffestw -ffestw_pop () +ffestw_pop (void) { ffestw b; ffestw oldb = ffestw_stack_top_; |