aboutsummaryrefslogtreecommitdiff
path: root/gcc/java
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2004-11-25 00:00:33 -0800
committerRichard Henderson <rth@gcc.gnu.org>2004-11-25 00:00:33 -0800
commiteb9744a7a65b4de6444f152a7e3475ae0b665c75 (patch)
tree2a9cb8d20e34ae06f5897d15e05fd3e78cd3f937 /gcc/java
parent6a4877c440b1c1154578d55cd0c08dc965472b97 (diff)
downloadgcc-eb9744a7a65b4de6444f152a7e3475ae0b665c75.zip
gcc-eb9744a7a65b4de6444f152a7e3475ae0b665c75.tar.gz
gcc-eb9744a7a65b4de6444f152a7e3475ae0b665c75.tar.bz2
verify-glue.c (vfy_init_name, [...]): Use ANSI declaration form.
* verify-glue.c (vfy_init_name, vfy_clinit_name, vfy_object_type, vfy_string_type, vfy_throwable_type): Use ANSI declaration form. From-SVN: r91278
Diffstat (limited to 'gcc/java')
-rw-r--r--gcc/java/ChangeLog5
-rw-r--r--gcc/java/verify-glue.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog
index c0ccc1d..24e1ce6 100644
--- a/gcc/java/ChangeLog
+++ b/gcc/java/ChangeLog
@@ -1,3 +1,8 @@
+2004-11-24 Richard Henderson <rth@redhat.com>
+
+ * verify-glue.c (vfy_init_name, vfy_clinit_name, vfy_object_type,
+ vfy_string_type, vfy_throwable_type): Use ANSI declaration form.
+
2004-11-24 Tom Tromey <tromey@redhat.com>
* verify.c (defer_merging): Don't use C++-style comment.
diff --git a/gcc/java/verify-glue.c b/gcc/java/verify-glue.c
index fb21340..b2cd915 100644
--- a/gcc/java/verify-glue.c
+++ b/gcc/java/verify-glue.c
@@ -68,13 +68,13 @@ vfy_string_length (vfy_string str)
}
vfy_string
-vfy_init_name ()
+vfy_init_name (void)
{
return init_identifier_node;
}
vfy_string
-vfy_clinit_name ()
+vfy_clinit_name (void)
{
return clinit_identifier_node;
}
@@ -344,7 +344,7 @@ vfy_find_class (vfy_jclass ignore ATTRIBUTE_UNUSED, vfy_string name)
}
vfy_jclass
-vfy_object_type ()
+vfy_object_type (void)
{
vfy_jclass k;
k = object_type_node;
@@ -352,7 +352,7 @@ vfy_object_type ()
}
vfy_jclass
-vfy_string_type ()
+vfy_string_type (void)
{
vfy_jclass k;
k = string_type_node;
@@ -360,7 +360,7 @@ vfy_string_type ()
}
vfy_jclass
-vfy_throwable_type ()
+vfy_throwable_type (void)
{
vfy_jclass k;
k = throwable_type_node;