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