aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/88 multiple envvars/prog.cpp
blob: 61ccf3a458a4dccdacddc3bc064408c279e44621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<cstdio>

#ifndef CPPFLAG
#error CPPFLAG not set
#endif

#ifdef CFLAG
#error CFLAG is set
#endif

#ifndef CXXFLAG
#error CXXFLAG not set
#endif

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