testfromauxsubdir.c 227 B

12345678910111213141516
  1. #include <stdio.h>
  2. void secondone();
  3. void pair_stuff();
  4. void pair_p_stuff();
  5. void vcl_stuff();
  6. int main()
  7. {
  8. printf("Hello from subdirectory\n");
  9. secondone();
  10. pair_stuff();
  11. pair_p_stuff();
  12. vcl_stuff();
  13. return 0;
  14. }