diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2000-04-04 20:40:20 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2000-04-04 20:40:20 +0000 |
commit | c0b864fce74e47f47672788276d1ae0745323f3b (patch) | |
tree | c851672dba9f99ab8fe6980ce20fa54c24aa0837 /gcc/java/class.c | |
parent | 69c0caa16692ebab160b10ff1705eec5eebebae6 (diff) | |
download | gcc-c0b864fce74e47f47672788276d1ae0745323f3b.zip gcc-c0b864fce74e47f47672788276d1ae0745323f3b.tar.gz gcc-c0b864fce74e47f47672788276d1ae0745323f3b.tar.bz2 |
boehm.c (mark_reference_fields, set_bit): Prototype.
* boehm.c (mark_reference_fields, set_bit): Prototype.
(set_bit): Un-ANSI-fy definition.
* class.c (init_test_hash_newfunc, decl_hash, decl_compare):
Prototype.
* decl.c (emit_init_test_initialization): Likewise.
* gjavah.c (jni_print_char): Likewise.
* parse.y (create_new_parser_context): Likewise.
From-SVN: r32908
Diffstat (limited to 'gcc/java/class.c')
-rw-r--r-- | gcc/java/class.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/java/class.c b/gcc/java/class.c index e9d41e3..152c639 100644 --- a/gcc/java/class.c +++ b/gcc/java/class.c @@ -48,6 +48,11 @@ static tree mangle_static_field PARAMS ((tree)); static void add_interface_do PARAMS ((tree, tree, int)); static tree maybe_layout_super_class PARAMS ((tree, tree)); static int assume_compiled PARAMS ((const char *)); +static struct hash_entry *init_test_hash_newfunc PARAMS ((struct hash_entry *, + struct hash_table *, + hash_table_key)); +static unsigned long decl_hash PARAMS ((hash_table_key)); +static boolean decl_compare PARAMS ((hash_table_key, hash_table_key)); static rtx registerClass_libfunc; |