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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tests/Dependency/Exec/ExecMain.c b/Tests/Dependency/Exec/ExecMain.c
index b666a24..d2f551c 100644
--- a/Tests/Dependency/Exec/ExecMain.c
+++ b/Tests/Dependency/Exec/ExecMain.c
@@ -2,11 +2,13 @@
void NoDepBFunction();
void NoDepCFunction();
-void FiveFunction();
+void SixAFunction();
+void SixBFunction();
int main( )
{
- FiveFunction();
+ SixAFunction();
+ SixBFunction();
NoDepBFunction();
NoDepCFunction();