diff options
author | Andreas Jaeger <aj@suse.de> | 2003-07-06 22:32:17 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2003-07-06 22:32:17 +0200 |
commit | 77f9b92ca44d5e03f97cec02bda2f5bef2b5885c (patch) | |
tree | 7a7e3dcca38ea8778584051ff27fcd7ea61c6a6f /gcc/f/implic.c | |
parent | 313dd5043568c6969fe11aac05f424e08097c50b (diff) | |
download | gcc-77f9b92ca44d5e03f97cec02bda2f5bef2b5885c.zip gcc-77f9b92ca44d5e03f97cec02bda2f5bef2b5885c.tar.gz gcc-77f9b92ca44d5e03f97cec02bda2f5bef2b5885c.tar.bz2 |
bad.c: Convert () to (void) in function definitions.
* bad.c: Convert () to (void) in function definitions.
* bld.c: Likewise.
* data.c: Likewise.
* equiv.c: Likewise.
* expr.c: Likewise.
* global.c: Likewise.
* implic.c: Likewise.
* info.c: Likewise.
* intdoc.c: Likewise.
* intrin.c: Likewise.
* lab.c: Likewise.
* lex.c: Likewise.
* malloc.c: Likewise.
* src.c: Likewise.
* st.c: Likewise.
* sta.c: Likewise.
* stb.c: Likewise.
* stc.c: Likewise.
* std.c: Likewise.
* ste.c: Likewise.
* storag.c: Likewise.
* stt.c: Likewise.
* stw.c: Likewise.
* symbol.c: Likewise.
* top.c: Likewise.
* where.c: Likewise.
* com.c: Convert prototypes to ISO C90.
* com.h: Likewise.
* g77spec.c: Likewise.
From-SVN: r69014
Diffstat (limited to 'gcc/f/implic.c')
-rw-r--r-- | gcc/f/implic.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/f/implic.c b/gcc/f/implic.c index 6fe4606..c7a28cb 100644 --- a/gcc/f/implic.c +++ b/gcc/f/implic.c @@ -1,5 +1,5 @@ /* implic.c -- Implementation File (module.c template V1.0) - Copyright (C) 1995, 2002 Free Software Foundation, Inc. + Copyright (C) 1995, 2002, 2003 Free Software Foundation, Inc. Contributed by James Craig Burley. This file is part of GNU Fortran. @@ -220,7 +220,7 @@ ffeimplic_establish_symbol (ffesymbol s) Allows for holes in the sequence of letters (i.e. EBCDIC). */ void -ffeimplic_init_2 () +ffeimplic_init_2 (void) { ffeimplic_ imp; char c; @@ -312,7 +312,7 @@ ffeimplic_init_2 () Assigns null type information to all initial letters. */ void -ffeimplic_none () +ffeimplic_none (void) { ffeimplic_ imp; @@ -378,6 +378,6 @@ ffeimplic_peek_symbol_type (ffesymbol s, const char *name) Kills info object for each entry in table. */ void -ffeimplic_terminate_2 () +ffeimplic_terminate_2 (void) { } |