aboutsummaryrefslogtreecommitdiff
path: root/gcc/java/check-init.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@versicolor.rutgers.edu>2000-01-21 20:57:00 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2000-01-21 20:57:00 +0000
commitdf32d2ce42d7607e7f189bab047762bb16d8d2c8 (patch)
treee8ac15eb4e2b1725da0aa68199c3eb0515ab1a7b /gcc/java/check-init.c
parent7652adb5c699caf28e8139289e6cd8a2f203c0f8 (diff)
downloadgcc-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/check-init.c')
-rw-r--r--gcc/java/check-init.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/java/check-init.c b/gcc/java/check-init.c
index dca49ce..a202b45 100644
--- a/gcc/java/check-init.c
+++ b/gcc/java/check-init.c
@@ -1,6 +1,6 @@
/* Code to test for "definitive assignment".
- Copyright (C) 1999 Free Software Foundation, Inc.
+ Copyright (C) 1999, 2000 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -97,12 +97,12 @@ static tree wfl;
#define WORD_SIZE ((unsigned int)(sizeof(word) * 8))
-static void check_bool_init PROTO ((tree, words, words, words));
-static void check_init PROTO ((tree, words));
-static void check_cond_init PROTO ((tree, tree, tree, words, words, words));
-static void check_bool2_init PROTO ((enum tree_code, tree, tree, words, words, words));
+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));
struct alternatives;
-static void done_alternative PROTO ((words, struct alternatives *));
+static void done_alternative PARAMS ((words, struct alternatives *));
#if 0
#define ALLOC_WORDS(NUM) ((word*) xmalloc ((NUM) * sizeof (word)))