prog.c 246 B

1234567891011121314
  1. #include<stdio.h>
  2. #include"config.h"
  3. int main(int argc, char **argv) {
  4. if(ONE != 1) {
  5. fprintf(stderr, "ONE is not 1.\n");
  6. return 1;
  7. }
  8. if(ZERO != 0) {
  9. fprintf(stderr, "ZERO is not 0.\n");
  10. }
  11. return 0;
  12. }