This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] / Robust / src / ClassLibrary / System.java
diff --git a/Robust/src/ClassLibrary/System.java b/Robust/src/ClassLibrary/System.java
deleted file mode 100644 (file)
index 2595e54..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-public class System {
-    public static void printInt(int x) {
-       String s=String.valueOf(x);
-       printString(s);
-    }
-
-    public static native long currentTimeMillis();
-
-    public static native void printString(String s);
-
-    public static void error() {
-       System.printString("Error (Use Breakpoint on ___System______error method for more information!)\n");
-    }
-
-    public static native void exit(int status);
-}