CMake Nightly Date Stamp
[kiteware-cmake.git] / Tests / SubDirSpaces / ThirdSubDir / testfromauxsubdir.c
blob2bff654f2f3ee8bb54894a5893ab7913273dc336
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(void)
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;