summaryrefslogtreecommitdiffstats
path: root/test cases/unit/88 multiple envvars/prog.c
blob: 38d3c123bcf039876a5ed085da3cbc72916e1930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<stdio.h>

#ifndef CPPFLAG
#error CPPFLAG not set
#endif

#ifndef CFLAG
#error CFLAGS not set
#endif

#ifdef CXXFLAG
#error CXXFLAG is set
#endif

int main(int argc, char **argv) {
    printf("%d %s\n", argc, argv[0]);
    return 0;
}