42test.h 407 B

1234567891011121314
  1. /* This file is to test compute #include directives. It's named so
  2. that it starts with a pre-processing number which isn't a valid
  3. number (42test.h). Including this must work. */
  4. #ifndef INC42_FIRST
  5. int have_included_42test_h;
  6. #define INC42_FIRST
  7. #elif !defined INC42_SECOND
  8. #define INC42_SECOND
  9. int have_included_42test_h_second;
  10. #else
  11. #define INC42_THIRD
  12. int have_included_42test_h_third;
  13. #endif