Files
android_development/ndk/samples/module-exports/jni/bar/bar.c
David 'Digit' Turner fcefaf88ab Add a sample to demonstrate module exports in the NDK.
+ add .gitignore

Change-Id: Ifa160316e37cf201099ab0d8d89fdd375ee3eb59
2010-06-10 16:56:16 -07:00

7 lines
60 B
C

#include "bar.h"
int bar(int x)
{
return foo(x)-1;
}