diff options
Diffstat (limited to 'test cases/common/96 stringdef/stringdef.c')
-rw-r--r-- | test cases/common/96 stringdef/stringdef.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/common/96 stringdef/stringdef.c b/test cases/common/96 stringdef/stringdef.c new file mode 100644 index 0000000..17e29fd --- /dev/null +++ b/test cases/common/96 stringdef/stringdef.c @@ -0,0 +1,10 @@ +#include<stdio.h> +#include<string.h> + +int main(void) { + if(strcmp(FOO, "bar")) { + printf("FOO is misquoted: %s\n", FOO); + return 1; + } + return 0; +} |