This commit was manufactured by cvs2svn to create tag 'buildscript'.
[IRC.git] /
1 public class System {
2     public static void printInt(int x) {
3         String s=String.valueOf(x);
4         printString(s);
5     }
6
7     public static native long currentTimeMillis();
8
9     public static native void printString(String s);
10
11     public static void error() {
12         System.printString("Error (Use Breakpoint on ___System______error method for more information!)\n");
13     }
14
15     public static native void exit(int status);
16 }