diff options
author | Tom Tromey <tromey@cygnus.com> | 2000-06-30 23:09:44 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2000-06-30 23:09:44 +0000 |
commit | e5858cc975401a7ad2db921ab4de1f280765c1f5 (patch) | |
tree | 1abb2269095edc3e780960a18dbfccd2045e6fe6 | |
parent | abfc8a363e9557c4f8c81094bdebf9a238d0b7c1 (diff) | |
download | gcc-e5858cc975401a7ad2db921ab4de1f280765c1f5.zip gcc-e5858cc975401a7ad2db921ab4de1f280765c1f5.tar.gz gcc-e5858cc975401a7ad2db921ab4de1f280765c1f5.tar.bz2 |
* include/jni.h: Include <gcj/array.h>. Fixes PR libgcj/270.
From-SVN: r34818
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/include/jni.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 6f4681f..35372bf 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,7 @@ +2000-06-30 Tom Tromey <tromey@cygnus.com> + + * include/jni.h: Include <gcj/array.h>. Fixes PR libgcj/270. + 2000-06-27 Andrew Haley <aph@cygnus.com> * java/io/File.java (createTempFile): Close the FileDescriptor diff --git a/libjava/include/jni.h b/libjava/include/jni.h index 4442ce8..f25679a 100644 --- a/libjava/include/jni.h +++ b/libjava/include/jni.h @@ -21,6 +21,7 @@ details. */ /* This is wrong, because it pollutes the name-space too much! */ #include <gcj/javaprims.h> +#include <gcj/array.h> typedef struct _Jv_JNIEnv JNIEnv; typedef struct _Jv_JavaVM JavaVM; |