blob: 505f12280fff474a59d0862ea4050b1c74fd9b87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include<stdio.h>
#ifndef FOO
#error FOO is not defined.
#endif
#ifndef BAR
#error BAR is not defined.
#endif
int main(int argc, char **argv) {
printf("All is well.\n");
return 0;
}
|