summaryrefslogtreecommitdiff
path: root/Tests/Dependency/Exec/ExecMain.c
blob: d2f551c7a08fae851513603cef07f4fc2be71ff7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}