2014-08-03 19:52:23 +02:00
|
|
|
|
|
|
|
#ifdef DEBUG_MODE
|
2018-08-09 18:06:22 +02:00
|
|
|
# ifndef SPECIAL_MODE
|
|
|
|
# error Special configuration should be mapped to debug configuration.
|
|
|
|
# endif
|
2014-08-03 19:52:23 +02:00
|
|
|
#else
|
2018-08-09 18:06:22 +02:00
|
|
|
# ifdef SPECIAL_MODE
|
|
|
|
# error Special configuration should not be enabled if not debug configuration
|
|
|
|
# endif
|
2014-08-03 19:52:23 +02:00
|
|
|
#endif
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
int main(int, char**)
|
2014-08-03 19:52:23 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|