prog.c 300 B

123456789101112131415161718
  1. #include <string.h>
  2. /* config.h must not be in quotes:
  3. * https://gcc.gnu.org/onlinedocs/cpp/Search-Path.html
  4. */
  5. #include <config.h>
  6. #ifdef SHOULD_BE_UNDEF
  7. #error "FAIL!"
  8. #endif
  9. int main(int argc, char **argv) {
  10. #ifndef BE_TRUE
  11. return 1;
  12. #else
  13. return strcmp(MESSAGE, "mystring");
  14. #endif
  15. }