Home | History | Annotate | Download | only in jni
      1 #if 0
      2 #include <jni.h>
      3 
      4 jstring getStr(JNIEnv*);
      5 
      6 jstring
      7 Java_com_example_hellollvm_HelloJni_stringFromJNI( JNIEnv* env,
      8                                                   jobject thiz )
      9 {
     10     return getStr(env);
     11 }
     12 #endif
     13 
     14 int test_func2();
     15 
     16 void test_func() {
     17   test_func2();
     18 }
     19