ifdef.out 287 B

123456789101112131415161718192021222324252627
  1. /*
  2. * A comment
  3. *
  4. #ifndef PLOP
  5. * And another bla
  6. #else /* PLOP */
  7. * And another bla
  8. #endif /* PLOP */
  9. *
  10. #ifndef PLOP
  11. * And yet another
  12. #else /* PLOP */
  13. * and yet another
  14. #endif /* PLOP */
  15. */
  16. int
  17. main(void)
  18. {
  19. #ifdef PLOP
  20. #endif /* PLOP */
  21. printf("something");
  22. return (0);
  23. }