testfromauxsubdir.c 307 B

123456789101112131415161718192021
  1. #include <stdio.h>
  2. void secondone();
  3. void pair_stuff();
  4. void pair_p_stuff();
  5. void vcl_stuff();
  6. #ifdef CMAKE_PAREN
  7. void testOdd();
  8. #endif
  9. int main()
  10. {
  11. printf("Hello from subdirectory\n");
  12. secondone();
  13. #ifdef CMAKE_PAREN
  14. testOdd();
  15. #endif
  16. pair_stuff();
  17. pair_p_stuff();
  18. vcl_stuff();
  19. return 0;
  20. }