parent
5c37665e5d
commit
cadc873000
1 changed files with 14 additions and 0 deletions
@ -0,0 +1,14 @@ |
|||||||
|
#include <string.h> |
||||||
|
#include "config.h" |
||||||
|
|
||||||
|
#ifdef SHOULD_BE_UNDEF |
||||||
|
#error "FAIL!" |
||||||
|
#endif |
||||||
|
|
||||||
|
int main(int argc, char **argv) { |
||||||
|
#ifndef BE_TRUE |
||||||
|
return 1; |
||||||
|
#else |
||||||
|
return strcmp(MESSAGE, "mystring"); |
||||||
|
#endif |
||||||
|
} |
Loading…
Reference in new issue