bugfix in url parsing for HTTP.java
[org.ibex.core.git] / src / org / ibex / plat / Linux.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.plat;
3
4 import org.ibex.graphics.*;
5 import org.ibex.core.*;
6 import org.ibex.net.*;
7
8 /** Linux with an X11 display */
9 public class Linux extends X11 {
10
11     public static void main(String[] args) throws Exception { org.ibex.Main.main(args); }
12     private native void fixEnvironment();
13
14     public Linux() {
15         fixEnvironment();
16     }
17
18 }