OSDN Git Service

* java/lang/natSystem.cc (getpwuid_adaptor): New overloaded
[pf3gnuchains/gcc-fork.git] / libjava / gij.cc
1 /* Copyright (C) 1999  Cygnus Solutions
2
3    This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8
9 /* Author: Kresten Krab Thorup <krab@gnu.org>  */
10
11 #include <jvm.h>
12 #include <cni.h>
13 #include <stdio.h>
14
15 #include <java/lang/System.h>
16 #include <java/util/Properties.h>
17
18 int main (int argc, const char **argv)
19 {
20   if (argc < 2)
21     {
22       printf ("usage: %s <class name> args\n", argv[0]);
23       exit (1);
24     }
25
26   _Jv_RunMain (argv[1], argc-1, argv+1);
27 }