mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
9 lines
260 B
C
9 lines
260 B
C
#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);
|