summaryrefslogtreecommitdiff
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.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/Dependency/Exec/ExecMain.c b/Tests/Dependency/Exec/ExecMain.c
new file mode 100644
index 000000000..d2f551c7a
--- /dev/null
+++ b/Tests/Dependency/Exec/ExecMain.c
@@ -0,0 +1,18 @@
+#include <stdio.h>
+
+void NoDepBFunction();
+void NoDepCFunction();
+void SixAFunction();
+void SixBFunction();
+
+int main( )
+{
+ SixAFunction();
+ SixBFunction();
+ NoDepBFunction();
+ NoDepCFunction();
+
+ printf("Dependency test executable ran successfully.\n");
+
+ return 0;
+}