diff options
author | Kaveh R. Ghazi <ghazi@versicolor.rutgers.edu> | 2000-01-21 20:57:00 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-01-21 20:57:00 +0000 |
commit | df32d2ce42d7607e7f189bab047762bb16d8d2c8 (patch) | |
tree | e8ac15eb4e2b1725da0aa68199c3eb0515ab1a7b /gcc/java/java-except.h | |
parent | 7652adb5c699caf28e8139289e6cd8a2f203c0f8 (diff) | |
download | gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.zip gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.gz gcc-df32d2ce42d7607e7f189bab047762bb16d8d2c8.tar.bz2 |
buffer.h: PROTO -> PARAMS.
* buffer.h: PROTO -> PARAMS.
* check-init.c: Likewise.
* class.c: Likewise.
* constants.c: Likewise.
* convert.h: Likewise.
* decl.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* gjavah.c: Likewise.
* java-except.h: Likewise.
* java-tree.h: Likewise.
* jcf-depend.c: Likewise.
* jcf-dump.c: Likewise.
* jcf-parse.c: Likewise.
* jcf-path.c: Likewise.
* jcf-reader.c: Likewise.
* jcf-write.c: Likewise.
* jcf.h: Likewise.
* jv-scan.c: Likewise.
* jvgenmain.c: Likewise.
* jvspec.c: Likewise.
* lang.c: Likewise.
* lex.c: Likewise.
* lex.h: Likewise.
* parse-scan.y: Likewise.
* parse.h: Likewise.
* parse.y: Likewise.
* typeck.c: Likewise.
* verify.c: Likewise.
* xref.c: Likewise.
* xref.h: Likewise.
* zextract.c: Likewise.
* zipfile.h: Likewise.
From-SVN: r31550
Diffstat (limited to 'gcc/java/java-except.h')
-rw-r--r-- | gcc/java/java-except.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/java/java-except.h b/gcc/java/java-except.h index 07b3feb..49ef54b 100644 --- a/gcc/java/java-except.h +++ b/gcc/java/java-except.h @@ -1,6 +1,6 @@ /* Definitions for exception handling for use by the GNU compiler for the Java(TM) language compiler. - Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1997, 98-99, 2000 Free Software Foundation, Inc. This file is part of GNU CC. @@ -54,18 +54,18 @@ extern struct eh_range whole_range; #define NULL_EH_RANGE (&whole_range) -extern struct eh_range * find_handler PROTO ((int)); +extern struct eh_range * find_handler PARAMS ((int)); -extern void method_init_exceptions PROTO ((void)); +extern void method_init_exceptions PARAMS ((void)); -extern void emit_handlers PROTO ((void)); +extern void emit_handlers PARAMS ((void)); -extern void maybe_start_try PROTO ((int)); +extern void maybe_start_try PARAMS ((int)); -extern void maybe_end_try PROTO ((int)); +extern void maybe_end_try PARAMS ((int)); -extern void add_handler PROTO ((int, int, tree, tree)); +extern void add_handler PARAMS ((int, int, tree, tree)); -extern void handle_nested_ranges PROTO ((void)); +extern void handle_nested_ranges PARAMS ((void)); -extern void expand_resume_after_catch PROTO ((void)); +extern void expand_resume_after_catch PARAMS ((void)); |