lang_test.h 260 B

12345678
  1. #if defined(__cplusplus) && !defined(EXPECT_CXX)
  2. # error "__cplusplus defined but EXPECT_CXX not defined"
  3. #endif
  4. #if !defined(__cplusplus) && defined(EXPECT_CXX)
  5. # error "__cplusplus not defined but EXPECT_CXX defined"
  6. #endif
  7. extern void lang_test_h(void);