Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Tests / SubDirSpaces / ThirdSubDir / testfromauxsubdir.c
blobfa6c33ced66a833e613f230bb21ef0f8a9a2f6da
1 #include <stdio.h>
3 void secondone();
4 void pair_stuff();
5 void pair_p_stuff();
6 void vcl_stuff();
7 #ifdef CMAKE_PAREN
8 void testOdd();
9 #endif
10 int main()
12 printf("Hello from subdirectory\n");
13 secondone();
14 #ifdef CMAKE_PAREN
15 testOdd();
16 #endif
17 pair_stuff();
18 pair_p_stuff();
19 vcl_stuff();
20 return 0;