OSDN Git Service

* include/jni.h (JNIIMPORT): New macro.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Mar 2002 21:55:42 +0000 (21:55 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Mar 2002 21:55:42 +0000 (21:55 +0000)
(JNIEXPORT): Likewise.
(JNICALL): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51009 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/include/jni.h

index 352e2d1..7878586 100644 (file)
@@ -1,3 +1,14 @@
+2002-03-18  Tom Tromey  <tromey@redhat.com>
+
+       * include/jni.h (JNIIMPORT): New macro.
+       (JNIEXPORT): Likewise.
+       (JNICALL): Likewise.
+
+2002-03-18  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
+
+       * configure.host (i?86-*): Use -fuse-divide-subroutine on Solaris
+       systems.
+
 2002-03-18  Andrew Haley  <aph@cambridge.redhat.com>
 
        * include/i386-signal.h (old_i386_kernel_sigaction): New.
index d41a6a2..5510079 100644 (file)
@@ -172,6 +172,12 @@ typedef void *jmethodID;
 #define JNI_EDETACHED    -2
 #define JNI_EVERSION     -3
 
+/* Linkage and calling conventions.  This will need updating when we
+   support Windows DLLs.  */
+#define JNIIMPORT
+#define JNIEXPORT
+#define JNICALL
+
 #ifdef __cplusplus
 extern "C"
 {