Add a sample to demonstrate module exports in the NDK.

+ add .gitignore

Change-Id: Ifa160316e37cf201099ab0d8d89fdd375ee3eb59
This commit is contained in:
David 'Digit' Turner
2010-06-10 16:53:05 -07:00
parent d616e8b214
commit fcefaf88ab
8 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
#include "bar.h"
int something(void)
{
return bar(42);
}