diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2002-07-06 15:39:46 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2002-07-06 15:39:46 +0200 |
commit | ef171ead7c05e42837f8d69289d57d42a7222c31 (patch) | |
tree | a66f8e0a3431cadcb145609040b3740eb8aecd35 /gcc/gengtype.c | |
parent | 6ab5f795987a8c42e4e6e857a26a61a267c9f12e (diff) | |
download | gcc-ef171ead7c05e42837f8d69289d57d42a7222c31.tar.gz |
toplev.c (set_fast_math_flags): Don't use ISO C style function definitions.
* toplev.c (set_fast_math_flags): Don't use ISO C style function
definitions.
* gengtype.c (open_base_files): Likewise.
(close_output_files): Likewise.
* tracer.c (find_best_predecessor): Likewise.
(find_best_successor): Likewise.
(ignore_bb_p): Likewise.
From-SVN: r55286
Diffstat (limited to 'gcc/gengtype.c')
-rw-r--r-- | gcc/gengtype.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gcc/gengtype.c b/gcc/gengtype.c index f96fc53c463..b52d4a88d6a 100644 --- a/gcc/gengtype.c +++ b/gcc/gengtype.c @@ -25,6 +25,10 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA /* Nonzero iff an error has occurred. */ static int hit_error = 0; +static void open_base_files PARAMS ((void)); +static void close_output_files PARAMS ((void)); + + /* Report an error at POS, printing MSG. */ void @@ -607,7 +611,7 @@ oprintf VPARAMS ((outf_p o, const char *format, ...)) /* Open the global header file and the language-specific header files. */ static void -open_base_files (void) +open_base_files () { size_t i; @@ -795,7 +799,7 @@ get_output_file_name (input_file) but don't unnecessarily change modification times. */ static void -close_output_files PARAMS ((void)) +close_output_files () { outf_p of; |