Initial import of new NDK into donut tree

This commit is contained in:
David 'Digit' Turner
2009-05-07 20:39:04 +02:00
parent 816ba073c6
commit b9a8479e48
1437 changed files with 79943 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#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);
}