foo.in 327 B

123456789101112131415161718192021222324252627
  1. #include "doc1.h"
  2. #include "foo.h"
  3. #include <stdio.h>
  4. int generated();
  5. int wrapped();
  6. int main ()
  7. {
  8. if (generated()*wrapped()*doc() == 3*5*7)
  9. {
  10. FILE* fin = fopen("not_included.h", "r");
  11. if(fin)
  12. {
  13. fclose(fin);
  14. return 0;
  15. }
  16. else
  17. {
  18. return -2;
  19. }
  20. }
  21. return -1;
  22. }