fprintf(stderr, " -v Show program version information.\n");
fprintf(stderr, " -x Debugging mode.\n");
- exit(1);
+ exit(EXIT_SUCCESS);
}
/*
fprintf(stderr, " -v Show program version information.\n");
fprintf(stderr, " -x Increase debug level.\n");
- exit(EXIT_FAILURE);
+ exit(EXIT_SUCCESS);
}
#define RESPOND_STATIC(_cmd) \
case 'h':
default:
usage();
- ret = EXIT_FAILURE;
+ ret = EXIT_SUCCESS;
goto done;
}
argc -= (optind - 1);
fprintf(stderr, " -x Debugging mode.\n");
fprintf(stderr, " -M Show program version information.\n");
- exit(EXIT_FAILURE);
+ exit(EXIT_SUCCESS);
}
static int process_file(char const *filename)