verify-glue.c (vfy_init_name, [...]): Use ANSI declaration form.
authorRichard Henderson <rth@redhat.com>
Thu, 25 Nov 2004 08:00:33 +0000 (00:00 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 25 Nov 2004 08:00:33 +0000 (00:00 -0800)
        * 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

gcc/java/ChangeLog
gcc/java/verify-glue.c

index c0ccc1da6a05f93e191106a7ea2b87782040d317..24e1ce60beb89a8594523048ca2c91a81b6ac8df 100644 (file)
@@ -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.
index fb213405e432434d871d9ddacd6932c2a0483b4a..b2cd9156cd0750f81865a51d8fe4d7592df7d01f 100644 (file)
@@ -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;