blob: 633a2a45086088131f87a97daf6d834eb1355221 (
plain)
1
2
3
4
5
6
7
8
|
#if defined(__cplusplus) && !defined(EXPECT_CXX)
# error "__cplusplus defined but EXPECT_CXX not defined"
#endif
#if !defined(__cplusplus) && defined(EXPECT_CXX)
# error "__cplusplus not defined but EXPECT_CXX defined"
#endif
extern void lang_test_h(void);
|