aboutsummaryrefslogtreecommitdiffstats
path: root/make/stub_includes/jni/x11/jni_md.h
diff options
context:
space:
mode:
Diffstat (limited to 'make/stub_includes/jni/x11/jni_md.h')
-rw-r--r--make/stub_includes/jni/x11/jni_md.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/make/stub_includes/jni/x11/jni_md.h b/make/stub_includes/jni/x11/jni_md.h
new file mode 100644
index 000000000..3320cc7c7
--- /dev/null
+++ b/make/stub_includes/jni/x11/jni_md.h
@@ -0,0 +1,24 @@
+/*
+ * @(#)jni_md.h 1.19 05/11/17
+ *
+ * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
+ * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+ */
+
+#ifndef _JAVASOFT_JNI_MD_H_
+#define _JAVASOFT_JNI_MD_H_
+
+#define JNIEXPORT
+#define JNIIMPORT
+#define JNICALL
+
+typedef int jint;
+#ifdef _LP64 /* 64-bit Solaris */
+typedef long jlong;
+#else
+typedef long long jlong;
+#endif
+
+typedef signed char jbyte;
+
+#endif /* !_JAVASOFT_JNI_MD_H_ */