(int fd, int c)
| 37 | private static native int open(String path, boolean append) throws IOException; |
| 38 | |
| 39 | private static native void write(int fd, int c) throws IOException; |
| 40 | |
| 41 | private static native void write(int fd, byte[] b, int offset, int length) |
| 42 | throws IOException; |