mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-01-26 19:09:06 +00:00
14 lines
130 B
C
14 lines
130 B
C
#include <${CHECK_INCLUDE_FILE_VAR}>
|
|
|
|
#ifdef __CLASSIC_C__
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
#else
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|
|
#endif
|