blob: 505f12280fff474a59d0862ea4050b1c74fd9b87 [file] [log] [blame]
#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;
}