14 lines
274 B
C
Raw Normal View History

2015-04-27 22:25:09 +02:00
#ifndef TGT_DEF
2018-08-09 18:06:22 +02:00
# error TGT_DEF incorrectly not defined
2015-04-27 22:25:09 +02:00
#endif
#ifndef TGT_TYPE_STATIC_LIBRARY
2018-08-09 18:06:22 +02:00
# error TGT_TYPE_STATIC_LIBRARY incorrectly not defined
2015-04-27 22:25:09 +02:00
#endif
#ifdef TGT_TYPE_EXECUTABLE
2018-08-09 18:06:22 +02:00
# error TGT_TYPE_EXECUTABLE incorrectly defined
2015-04-27 22:25:09 +02:00
#endif
2016-07-09 11:21:54 +02:00
int main(void)
{
return 0;
}