includes-objc2.c 329 B

12345678910111213
  1. // TEST_CFLAGS -D__OBJC2__
  2. // Verify that all headers can be included in any language, even if
  3. // the client is C code that defined __OBJC2__.
  4. // This is the definition that Instruments uses in its build.
  5. #if defined(__OBJC2__)
  6. #undef __OBJC2__
  7. #endif
  8. #define __OBJC2__ 1
  9. #define NAME "includes-objc2.c"
  10. #include "includes.c"