prog.c 193 B

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