summaryrefslogtreecommitdiff
path: root/Tests/BundleGeneratorTest/Executable.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/BundleGeneratorTest/Executable.cxx')
-rw-r--r--Tests/BundleGeneratorTest/Executable.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/BundleGeneratorTest/Executable.cxx b/Tests/BundleGeneratorTest/Executable.cxx
new file mode 100644
index 000000000..8107f783a
--- /dev/null
+++ b/Tests/BundleGeneratorTest/Executable.cxx
@@ -0,0 +1,8 @@
+extern void print_message(const char* const Message);
+
+int main(int argc, char* argv[])
+{
+ print_message("Howdy, World!\n");
+ return 0;
+}
+