main.cpp 298 B

1234567891011121314151617181920212223
  1. #ifndef FOO_LIBRARY
  2. #error Expected FOO_LIBRARY
  3. #endif
  4. #ifndef BAR_LIBRARY
  5. #error Expected BAR_LIBRARY
  6. #endif
  7. #ifdef BANG_LIBRARY
  8. #error Unexpected BANG_LIBRARY
  9. #endif
  10. #ifdef ZOT_LIBRARY
  11. #error Unexpected ZOT_LIBRARY
  12. #endif
  13. #include "zot.h"
  14. int main(void)
  15. {
  16. return foo() + bar() + zot();
  17. }