aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/check-init.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2003-01-09 23:16:56 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2003-01-09 23:16:56 +0000
commitd2097937c57963f4bea75df2d0abe691f74de3fe (patch)
treec01acffab8cc0c484f09b1cdd4401847e024105e /gcc/java/check-init.c
parent30028c85159c12c4e8920af0a9111372e56f1636 (diff)
downloadgcc-d2097937c57963f4bea75df2d0abe691f74de3fe.zip
gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.gz
gcc-d2097937c57963f4bea75df2d0abe691f74de3fe.tar.bz2
* All Files: Remove PARAMS macro.
From-SVN: r61133
Diffstat (limited to 'gcc/java/check-init.c')
-rw-r--r--gcc/java/check-init.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/java/check-init.c b/gcc/java/check-init.c
index 0e91077..ecb16eb 100644
--- a/gcc/java/check-init.c
+++ b/gcc/java/check-init.c
@@ -102,15 +102,15 @@ static tree wfl;
#define WORD_SIZE ((unsigned int)(sizeof(word) * BITS_PER_UNIT))
-static void check_bool_init PARAMS ((tree, words, words, words));
-static void check_init PARAMS ((tree, words));
-static void check_cond_init PARAMS ((tree, tree, tree, words, words, words));
-static void check_bool2_init PARAMS ((enum tree_code, tree, tree, words, words, words));
+static void check_bool_init (tree, words, words, words);
+static void check_init (tree, words);
+static void check_cond_init (tree, tree, tree, words, words, words);
+static void check_bool2_init (enum tree_code, tree, tree, words, words, words);
struct alternatives;
-static void done_alternative PARAMS ((words, struct alternatives *));
-static tree get_variable_decl PARAMS ((tree));
-static void final_assign_error PARAMS ((tree));
-static void check_final_reassigned PARAMS ((tree, words));
+static void done_alternative (words, struct alternatives *);
+static tree get_variable_decl (tree);
+static void final_assign_error (tree);
+static void check_final_reassigned (tree, words);
#define ALLOC_WORDS(NUM) (xmalloc ((NUM) * sizeof (word)))
#define FREE_WORDS(PTR) (free (PTR))