aboutsummaryrefslogtreecommitdiff
path: root/tests/twopart_main.cpp
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2011-12-14 11:39:53 -0800
committerAlon Zakai <alonzakai@gmail.com>2011-12-14 11:39:53 -0800
commitb2c69c52b13e1b3020d33dd915c6e8d13520a722 (patch)
tree1fcef191c59cf5ef75414d9bde140dee665c3485 /tests/twopart_main.cpp
parent5322f208ad2126038456c90860970739c6e36556 (diff)
emcc linking fixes and tests
Diffstat (limited to 'tests/twopart_main.cpp')
-rw-r--r--tests/twopart_main.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/twopart_main.cpp b/tests/twopart_main.cpp
new file mode 100644
index 00000000..6fac53c6
--- /dev/null
+++ b/tests/twopart_main.cpp
@@ -0,0 +1,8 @@
+
+extern void theFunc(char *str);
+
+int main() {
+ theFunc("hello from main");
+ return 1;
+}
+