licensing cleanup (GPLv2)
[org.ibex.core.git] / src / org / ibex / plat / POSIX.cc
index 869e275..0c4190b 100644 (file)
@@ -1,25 +1,16 @@
-// Copyright 2002 Adam Megacz, see the COPYING file for licensing [LGPL]
-// see below for copyright information on the second portion of this file
-
-#include "GCJ.cc"
+// Copyright 2000-2005 the Contributors, as shown in the revision logs.
+// Licensed under the GNU General Public License version 2 ("the License").
+// You may not use this file except in compliance with the License.
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include <sys/ipc.h>
-#include <sys/shm.h>
-#include <sys/types.h>
-#include <signal.h>
-#include <java/lang/String.h>
+// see below for copyright information on the second portion of this file
 
-// FIXME: we don't need all these
 #include <java/lang/String.h>
-#include <org/ibex/Surface.h>
-#include <org/ibex/Picture.h>
+#include <org/ibex/graphics/Surface.h>
+#include <org/ibex/graphics/Picture.h>
 #include <org/ibex/js/JS.h>
-#include <org/ibex/Box.h>
+#include <org/ibex/core/Box.h>
 #include <org/ibex/util/Semaphore.h>
-#include <org/ibex/Platform.h>
+#include <org/ibex/plat/Platform.h>
 #include <java/lang/Long.h>
 #include <java/util/Hashtable.h>
 #include <org/ibex/util/Log.h>
 #include <java/lang/System.h>
 #include <java/io/PrintStream.h>
 
+#include "GCJ.cc"
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/ipc.h>
+#include <sys/shm.h>
+#include <sys/types.h>
+#include <signal.h>
+
 jstring org::ibex::plat::POSIX::_getEnv(jstring key) {
     int len = JvGetStringUTFLength(key);
     char buf[len + 1];