https://github.com/Kitware/CMake
Raw File
Tip revision: c36622a45f55b296d0891d94a91372c320768be0 authored by David Cole on 31 October 2012, 14:59:55 UTC
CMake 2.8.10
Tip revision: c36622a
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