aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/14 configure file/prog9.c
blob: 3f776012962b9c2ec6546bcc1836ef2e7a0b004b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <string.h>
#include <config9a.h>
#include <config9b.h>

#if defined(A_UNDEFINED) || defined(B_UNDEFINED)
#error "Should not be defined"
#endif

#if !defined(A_DEFINED) || !defined(B_DEFINED)
#error "Should be defined"
#endif

int main(void) {
    return strcmp(A_STRING, "foo")
        || strcmp(B_STRING, "foo")
        || A_INT != 42
        || B_INT != 42;
}