mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-14 08:33:16 +00:00
8 lines
129 B
C
8 lines
129 B
C
#include <simple_int.h>
|
|
|
|
JNIEXPORT jint JNICALL
|
|
Java_simple_1int_nat (JNIEnv *env, jclass klass, jint val)
|
|
{
|
|
return 2 * val;
|
|
}
|