summaryrefslogtreecommitdiff
path: root/Tests/Dependency/Exec4/ExecMain.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Dependency/Exec4/ExecMain.c')
-rw-r--r--Tests/Dependency/Exec4/ExecMain.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/Tests/Dependency/Exec4/ExecMain.c b/Tests/Dependency/Exec4/ExecMain.c
new file mode 100644
index 000000000..3f53573bf
--- /dev/null
+++ b/Tests/Dependency/Exec4/ExecMain.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+void FiveFunction();
+void TwoFunction();
+
+int main( )
+{
+ FiveFunction();
+ TwoFunction();
+
+ printf("Dependency test executable ran successfully.\n");
+
+ return 0;
+}