https://github.com/Kitware/CMake
Raw File
Tip revision: 0b3781e4c497566acaa504d4106d11c02a642501 authored by Brad King on 16 January 2014, 14:31:28 UTC
CMake 2.8.12.2
Tip revision: 0b3781e
CheckIncludeFile.c.in
#include <${CHECK_INCLUDE_FILE_VAR}>

#ifdef __CLASSIC_C__
int main()
{
  return 0;
}
#else
int main(void)
{
  return 0;
}
#endif
back to top