blob: 8c4135c08d9885bfdba4be8c1fa6355426bc539c (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <jni.h>
#include <assert.h>
JNIEXPORT jint JNICALL
Java_com_sun_gluegen_runtime_CPU_getPointerSizeInBits(JNIEnv *env, jclass _unused) {
return sizeof(void *) * 8;
}
|