various classpath updates to help SWT build

This commit is contained in:
Joel Dice
2007-08-30 17:31:32 -06:00
parent 8b102783a6
commit a4b4f36c5b
14 changed files with 358 additions and 16 deletions

View File

@ -21,12 +21,12 @@ public class FileOutputStream extends OutputStream {
private static native int open(String path) throws IOException;
public static native void write(int fd, int c) throws IOException;
private static native void write(int fd, int c) throws IOException;
public static native void write(int fd, byte[] b, int offset, int length)
private static native void write(int fd, byte[] b, int offset, int length)
throws IOException;
public static native void close(int fd) throws IOException;
private static native void close(int fd) throws IOException;
public void write(int c) throws IOException {
write(fd, c);