summaryrefslogtreecommitdiff
path: root/Tests/LinkLine/Exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/LinkLine/Exec.c')
-rw-r--r--Tests/LinkLine/Exec.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/LinkLine/Exec.c b/Tests/LinkLine/Exec.c
new file mode 100644
index 000000000..807a7a8cc
--- /dev/null
+++ b/Tests/LinkLine/Exec.c
@@ -0,0 +1,9 @@
+void OneFunc();
+void TwoFunc();
+
+int main()
+{
+ OneFunc();
+ TwoFunc();
+ return 0;
+}