licensing cleanup (GPLv2)
[org.ibex.core.git] / src / org / ibex / plat / Linux.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the GNU General Public License version 2 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.plat;
6
7 import org.ibex.graphics.*;
8 import org.ibex.core.*;
9 import org.ibex.net.*;
10
11 /** Linux with an X11 display */
12 public class Linux extends X11 {
13
14     public static void main(String[] args) throws Exception { org.ibex.core.Main.main(args); }
15     private native void fixEnvironment();
16
17     public Linux() {
18         fixEnvironment();
19     }
20
21 }