Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / Dependency / Exec3 / ExecMain.c
blobd08a796c34133d638dd2f57739452d4d481fa3d4
1 #include <stdio.h>
3 void FiveFunction();
4 void EightFunction();
6 int main( )
8 FiveFunction();
9 EightFunction();
11 printf("Dependency test executable ran successfully.\n");
13 return 0;