Home | History | Annotate | Download | only in jni
      1 /* This function is not called from main() but should still be included
      2  * in the final executable due to our use of LOCAL_WHOLE_STATIC_LIBRARIES.
      3  * main() will dlopen() itself to look for the function symbol.
      4  */
      5 int foo2(int x)
      6 {
      7     return x*2;
      8 }
      9