diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-09 23:16:56 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-01-09 23:16:56 +0000 |
commit | 6852521a239ad1a3c36c1aaf1952c1358853a403 (patch) | |
tree | c01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/except.c | |
parent | 58ada791d3cb97df7eae8ab3db29f9a5d4149e79 (diff) | |
download | gcc-6852521a239ad1a3c36c1aaf1952c1358853a403.tar.gz |
* All Files: Remove PARAMS macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61133 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/except.c')
-rw-r--r-- | gcc/java/except.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/java/except.c b/gcc/java/except.c index 5c9fe017e19..59b7fdf5bfc 100644 --- a/gcc/java/except.c +++ b/gcc/java/except.c @@ -39,13 +39,13 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "java-except.h" #include "toplev.h" -static void expand_start_java_handler PARAMS ((struct eh_range *)); -static void expand_end_java_handler PARAMS ((struct eh_range *)); -static struct eh_range *find_handler_in_range PARAMS ((int, struct eh_range *, - struct eh_range *)); -static void link_handler PARAMS ((struct eh_range *, struct eh_range *)); -static void check_start_handlers PARAMS ((struct eh_range *, int)); -static void free_eh_ranges PARAMS ((struct eh_range *range)); +static void expand_start_java_handler (struct eh_range *); +static void expand_end_java_handler (struct eh_range *); +static struct eh_range *find_handler_in_range (int, struct eh_range *, + struct eh_range *); +static void link_handler (struct eh_range *, struct eh_range *); +static void check_start_handlers (struct eh_range *, int); +static void free_eh_ranges (struct eh_range *range); struct eh_range *current_method_handlers; |