// TEST_CONFIG // Verify that all headers can be included in any language. // See also test/include-warnings.c which checks for warnings in these headers. // See also test/includes-objc2.c which checks for safety even if // the client is C code that defined __OBJC2__. #ifndef NAME #define NAME "includes.c" #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if TARGET_OS_OSX #include #include #include #endif #pragma clang diagnostic push #pragma clang diagnostic ignored "-Weverything" #include "test.h" #pragma clang diagnostic pop int main() { succeed(NAME); }