aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/33 define10/prog.c
blob: 10e94f16b6cbb650868ef8ac10944cfa29088be2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include<stdio.h>
#include"config.h"

int main(int argc, char **argv) {
    if(ONE != 1) {
        fprintf(stderr, "ONE is not 1.\n");
        return 1;
    }
    if(ZERO != 0) {
        fprintf(stderr, "ZERO is not 0.\n");
    }
    return 0;
}