https://github.com/Kitware/CMake
Revision b2cf4db2010ae0c08cd063b7aa8136fd512d8a97 authored by Brad King on 01 March 2008, 15:56:03 UTC, committed by Brad King on 01 March 2008, 15:56:03 UTC
1 parent e083de1
Raw File
Tip revision: b2cf4db2010ae0c08cd063b7aa8136fd512d8a97 authored by Brad King on 01 March 2008, 15:56:03 UTC
BUG: Fix typo XCode -> Xcode in Preprocess test.
Tip revision: b2cf4db
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