mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
10 lines
161 B
C
10 lines
161 B
C
#include <stdio.h>
|
|
#include <jni.h>
|
|
#include "PR15133.h"
|
|
|
|
JNIEXPORT void JNICALL
|
|
Java_PR15133_printIt (JNIEnv *env, jobject x, jint y)
|
|
{
|
|
printf ("%d\n", y);
|
|
}
|