Merge branch 'release-3.31'
[kiteware-cmake.git] / Tests / Dependency / Exec / ExecMain.c
blob793bc18736846f8337398f29b9297d9d5f6d16f1
1 #include <stdio.h>
3 void NoDepBFunction();
4 void NoDepCFunction();
5 void SixAFunction();
6 void SixBFunction();
8 int main(void)
10 SixAFunction();
11 SixBFunction();
12 NoDepBFunction();
13 NoDepCFunction();
15 printf("Dependency test executable ran successfully.\n");
17 return 0;