summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/Exec/ExecMain.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/Dependency/Exec/ExecMain.c')
-rw-r--r--Tests/Dependency/Exec/ExecMain.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/Dependency/Exec/ExecMain.c b/Tests/Dependency/Exec/ExecMain.c
new file mode 100644
index 0000000..b666a24
--- /dev/null
+++ b/Tests/Dependency/Exec/ExecMain.c
@@ -0,0 +1,16 @@
+#include <stdio.h>
+
+void NoDepBFunction();
+void NoDepCFunction();
+void FiveFunction();
+
+int main( )
+{
+ FiveFunction();
+ NoDepBFunction();
+ NoDepCFunction();
+
+ printf("Dependency test executable ran successfully.\n");
+
+ return 0;
+}