summaryrefslogtreecommitdiffstats
path: root/test cases/common/96 stringdef/stringdef.c
blob: 17e29fdc1cc8b83190d7889509f566a3b12e4355 (plain)
1
2
3
4
5
6
7
8
9
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;
}