21 lines
267 B
C
Raw Normal View History

2018-02-28 15:40:21 +01:00
const char features[] = {"\n"
"C_FEATURE:"
2019-07-04 17:59:58 +02:00
#if _MSC_VER >= 1600
2018-02-28 15:40:21 +01:00
"1"
#else
"0"
#endif
"c_function_prototypes\n"
"C_FEATURE:"
2019-07-04 17:59:58 +02:00
#if _MSC_VER >= 1600
2018-02-28 15:40:21 +01:00
"1"
#else
"0"
#endif
"c_variadic_macros\n"
};
int main(int argc, char** argv) { (void)argv; return features[argc]; }