mass rename and rebranding from xwt to ibex - fixed to use ixt files
[org.ibex.core.git] / src / org / ibex / plat / Linux.java
diff --git a/src/org/ibex/plat/Linux.java b/src/org/ibex/plat/Linux.java
new file mode 100644 (file)
index 0000000..a802d07
--- /dev/null
@@ -0,0 +1,12 @@
+// Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
+package org.ibex.plat;
+
+/** Linux with an X11 display */
+public class Linux extends X11 {
+    private native void fixEnvironment();
+
+    public Linux() {
+        fixEnvironment();
+    }
+
+}