summaryrefslogtreecommitdiff
path: root/src/libjvm-android.c
diff options
context:
space:
mode:
authorJari Vetoniemi <mailroxas@gmail.com>2018-02-19 13:33:53 +0200
committerJari Vetoniemi <mailroxas@gmail.com>2018-02-19 13:33:53 +0200
commit09fc4ea761b6b774a6423bdfd92049be78e32a49 (patch)
tree04c467919f057effb36352d7531693239e46e337 /src/libjvm-android.c
parent535779b6ff5cd21590e5ed3aff3c9ae4c785e34d (diff)
jvm: implement more java apis
Diffstat (limited to 'src/libjvm-android.c')
-rw-r--r--src/libjvm-android.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libjvm-android.c b/src/libjvm-android.c
index 7cece38..d9fff44 100644
--- a/src/libjvm-android.c
+++ b/src/libjvm-android.c
@@ -46,3 +46,9 @@ android_content_SharedPreferences_Editor_putInt(JNIEnv *env, jobject object, va_
va_end(args);
return object;
}
+
+void
+android_content_SharedPreferences_Editor_apply(JNIEnv *env, jobject object, va_list args)
+{
+ assert(env && object);
+}