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/constants.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/constants.c')
-rw-r--r-- | gcc/java/constants.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/java/constants.c b/gcc/java/constants.c index 6fd1cef43fc..11efc2bf0c0 100644 --- a/gcc/java/constants.c +++ b/gcc/java/constants.c @@ -31,11 +31,11 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "toplev.h" #include "ggc.h" -static void set_constant_entry PARAMS ((CPool *, int, int, jword)); -static int find_class_or_string_constant PARAMS ((CPool *, int, tree)); -static int find_name_and_type_constant PARAMS ((CPool *, tree, tree)); -static tree get_tag_node PARAMS ((int)); -static tree build_constant_data_ref PARAMS ((void)); +static void set_constant_entry (CPool *, int, int, jword); +static int find_class_or_string_constant (CPool *, int, tree); +static int find_name_and_type_constant (CPool *, tree, tree); +static tree get_tag_node (int); +static tree build_constant_data_ref (void); /* Set the INDEX'th constant in CPOOL to have the given TAG and VALUE. */ |