24 lines
365 B
C
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifndef LINK_C_DEFINE
2018-08-09 18:06:22 +02:00
# error Expected LINK_C_DEFINE
2013-11-03 12:27:13 +02:00
#endif
#ifndef LINK_LANGUAGE_IS_C
2018-08-09 18:06:22 +02:00
# error Expected LINK_LANGUAGE_IS_C
2013-11-03 12:27:13 +02:00
#endif
#ifdef LINK_CXX_DEFINE
2018-08-09 18:06:22 +02:00
# error Unexpected LINK_CXX_DEFINE
2013-11-03 12:27:13 +02:00
#endif
#ifdef LINK_LANGUAGE_IS_CXX
2018-08-09 18:06:22 +02:00
# error Unexpected LINK_LANGUAGE_IS_CXX
2013-11-03 12:27:13 +02:00
#endif
2014-08-03 19:52:23 +02:00
#ifdef DEBUG_MODE
2018-08-09 18:06:22 +02:00
# error Unexpected DEBUG_MODE
2014-08-03 19:52:23 +02:00
#endif
2013-11-03 12:27:13 +02:00
int main(void)
{
return 0;
}