summaryrefslogtreecommitdiffstats
path: root/test cases/common/14 configure file/prog7.c
blob: 802bc46e5c9bb394cd039eb0f7467936beccbe11 (plain)
1
2
3
4
5
6
7
8
9
10
#include <string.h>
#include <config7.h>

int main(void) {
    return strcmp(MESSAGE1, "foo")
        || strcmp(MESSAGE2, "${var1}")
        || strcmp(MESSAGE3, "\\foo")
        || strcmp(MESSAGE4, "\\${var1}")
        || strcmp(MESSAGE5, "\\ ${ ${ \\${ \\${");
}