Commit eb9744a7 by Richard Henderson Committed by Richard Henderson

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
parent 6a4877c4
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.
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment