Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / Dependency / Exec / ExecMain.c
blobd2f551c7a08fae851513603cef07f4fc2be71ff7
1 #include <stdio.h>
3 void NoDepBFunction();
4 void NoDepCFunction();
5 void SixAFunction();
6 void SixBFunction();
8 int main( )
10 SixAFunction();
11 SixBFunction();
12 NoDepBFunction();
13 NoDepCFunction();
15 printf("Dependency test executable ran successfully.\n");
17 return 0;