Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Project
/
android_art
/
27ec961a1da540ba7f16c07a682585ab167317ad
/
.
/
src
/
jni_tests.cc
blob: 934ccac947005dfafcfda2cf9fd0dee46b855da6 [
file
] [
log
] [
blame
]
// Copyright 2011 Google Inc. All Rights Reserved.
#include
"jni.h"
#include
<stdio.h>
extern
"C"
JNIEXPORT jint JNICALL
Java_MyClass_bar
(
JNIEnv
*
env
,
jobject thisObj
,
jint count
)
{
return
count
+
1
;
}