diff options
Diffstat (limited to 'tests/twopart_main.cpp')
-rw-r--r-- | tests/twopart_main.cpp | 8 |
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; +} + |