diff options
Diffstat (limited to 'libjava/gnu/gcj/Core.java')
| -rw-r--r-- | libjava/gnu/gcj/Core.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libjava/gnu/gcj/Core.java b/libjava/gnu/gcj/Core.java new file mode 100644 index 00000000000..15a7e5c1255 --- /dev/null +++ b/libjava/gnu/gcj/Core.java @@ -0,0 +1,18 @@ +/* Copyright (C) 2001 Free Software Foundation + + This file is part of libgcj. + +This software is copyrighted work licensed under the terms of the +Libgcj License. Please consult the file "LIBGCJ_LICENSE" for +details. */ + +package gnu.gcj; + +public class Core +{ + public native static Core create (String name) throws java.io.IOException; + + public RawData ptr; + public int length; +} + |

