Files
android_development/ndk/sources/samples/two-libs/second.c
2009-05-07 20:39:04 +02:00

12 lines
268 B
C

#include "first.h"
#include <jni.h>
jint
Java_com_example_TwoLib_TwoLib_add( JNIEnv* env,
jobject this,
jint x,
jint y )
{
return first(x, y);
}