* Makefile.in (PREPROCESSOR_DEFINES): New macro.
[official-gcc.git] / libjava / gij.cc
blob5bd2451275e29725adf5569a4a3cf09efed03a8b
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 <cni.h>
13 #include <stdio.h>
15 #include <java/lang/System.h>
16 #include <java/util/Properties.h>
18 int main (int argc, const char **argv)
20 if (argc < 2)
22 printf ("usage: %s <class name> args\n", argv[0]);
23 exit (1);
26 _Jv_RunMain (argv[1], argc-1, argv+1);