Revision 615129f3ebd308abeaaee7f5f0689e7fc4616c28 authored by Brad King on 28 April 2020, 14:23:06 UTC, committed by Brad King on 28 April 2020, 14:23:06 UTC
1 parent ee1dd90
Raw File
CMakeCCompilerABI.c
#ifdef __cplusplus
#  error "A C++ compiler has been selected for C."
#endif

#ifdef __CLASSIC_C__
#  define const
#endif

#include "CMakeCompilerABI.h"

#ifdef __CLASSIC_C__
int main(argc, argv) int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
  int require = 0;
  require += info_sizeof_dptr[argc];
#if defined(ABI_ID)
  require += info_abi[argc];
#endif
  (void)argv;
  return require;
}
back to top