Files
android_development/ndk/samples/module-exports/jni/zoo/zoo.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
62 B
C

#include "bar.h"
int something(void)
{
return bar(42);
}