1 /*
2  * @(#)jni_md.h	1.19 05/11/17
3  *
4  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
5  * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6  */
7 
8 #ifndef _JAVASOFT_JNI_MD_H_
9 #define _JAVASOFT_JNI_MD_H_
10 
11 #define JNIEXPORT __attribute__((visibility("default")))
12 #define JNIIMPORT
13 #define JNICALL
14 
15 #if defined(__LP64__) && __LP64__ /* for -Wundef */
16 typedef int jint;
17 #else
18 typedef long jint;
19 #endif
20 typedef long long jlong;
21 typedef signed char jbyte;
22 
23 #endif /* !_JAVASOFT_JNI_MD_H_ */
24