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