* c-typeck.c (c_expand_asm_operands): Fix typo.
[official-gcc.git] / libjava / gij.cc
blobb851b77dcd8ffc442dc9393697293fb0eb6d49e3
1 /* Copyright (C) 1999 Cygnus Solutions
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 /* Author: Kresten Krab Thorup <krab@gnu.org> */
11 #include <jvm.h>
12 #include <gcj/cni.h>
13 #include <stdio.h>
15 #include <java/lang/System.h>
16 #include <java/util/Properties.h>
18 // This is used to initialize the compiled-in system properties.
19 const char *_Jv_Compiler_Properties[] =
21 NULL
24 int
25 main (int argc, const char **argv)
27 if (argc < 2)
29 printf ("usage: %s CLASS [ARGS]...\n", argv[0]);
30 exit (1);
33 _Jv_RunMain (argv[1], argc - 1, argv + 1);