summaryrefslogtreecommitdiffstats
path: root/Tests/Dependency/Exec3/ExecMain.c
blob: 085f30f3c71fe78b684a5ff77aa9a09e2ce6e7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

void FiveFunction();
void EightFunction();

int main(void)
{
  FiveFunction();
  EightFunction();

  printf("Dependency test executable ran successfully.\n");

  return 0;
}