mass rename and rebranding from xwt to ibex - fixed to use ixt files
[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 /** Linux with an X11 display */
5 public class Linux extends X11 {
6     private native void fixEnvironment();
7
8     public Linux() {
9         fixEnvironment();
10     }
11
12 }