24 lines
298 B
C++
Raw Normal View History

2013-11-03 12:27:13 +02:00
#ifndef FOO_LIBRARY
#error Expected FOO_LIBRARY
#endif
#ifndef BAR_LIBRARY
#error Expected BAR_LIBRARY
#endif
#ifdef BANG_LIBRARY
#error Unexpected BANG_LIBRARY
#endif
2015-04-27 22:25:09 +02:00
#ifdef ZOT_LIBRARY
#error Unexpected ZOT_LIBRARY
#endif
#include "zot.h"
2013-11-03 12:27:13 +02:00
int main(void)
{
2015-04-27 22:25:09 +02:00
return foo() + bar() + zot();
2013-11-03 12:27:13 +02:00
}