1 #ifdef __cplusplus
2 #  error "A C++ compiler has been selected for C."
3 #endif
4 
5 #ifdef __CLASSIC_C__
6 #  define const
7 #endif
8 
9 #include "CMakeCompilerABI.h"
10 
11 #ifdef __CLASSIC_C__
main(argc,argv)12 int main(argc, argv) int argc;
13 char* argv[];
14 #else
15 int main(int argc, char* argv[])
16 #endif
17 {
18   int require = 0;
19   require += info_sizeof_dptr[argc];
20   require += info_byte_order_big_endian[argc];
21   require += info_byte_order_little_endian[argc];
22 #if defined(ABI_ID)
23   require += info_abi[argc];
24 #endif
25   (void)argv;
26   return require;
27 }
28