summaryrefslogtreecommitdiff
path: root/test/files/jvm/natives.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/natives.c')
-rw-r--r--test/files/jvm/natives.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/files/jvm/natives.c b/test/files/jvm/natives.c
new file mode 100644
index 0000000000..7b6d7b5ba5
--- /dev/null
+++ b/test/files/jvm/natives.c
@@ -0,0 +1,8 @@
+#include "natives.h"
+
+JNIEXPORT jstring JNICALL Java_Test_00024_sayHello
+ (JNIEnv *env, jobject thisobject, jstring js)
+
+{
+ return js;
+}