* jvgenmain.c (main): Provide declarations for JvRunMain{,Name}.

From-SVN: r215969
This commit is contained in:
Marek Polacek 2014-10-07 12:29:15 +00:00 committed by Marek Polacek
parent 8ccda8bce6
commit 59b41b69be
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-10-07 Marek Polacek <polacek@redhat.com>
* jvgenmain.c (main): Provide declarations for JvRunMain{,Name}.
2014-07-08 Mark Wielaard <mjw@redhat.com>
* builtins.c (putVolatile_builtin): Use build_qualified_type

View File

@ -127,6 +127,10 @@ main (int argc, char **argv)
/* At this point every element of ARGV from 1 to LAST_ARG is a `-D'
option. Process them appropriately. */
fprintf (stream, "extern const char **_Jv_Compiler_Properties;\n");
if (indirect)
fprintf (stream, "extern void JvRunMainName ();\n");
else
fprintf (stream, "extern void JvRunMain ();\n");
fprintf (stream, "static const char *props[] =\n{\n");
for (i = 1; i < last_arg; ++i)
{