Display version string. */
| 179 | |
| 180 | /* Display version string. */ |
| 181 | char *opt_version_and_exit(const char *version) |
| 182 | { |
| 183 | printf("%s\n", version); |
| 184 | /* Don't have valgrind complain! */ |
| 185 | opt_free_table(); |
| 186 | exit(0); |
| 187 | } |
| 188 | |
| 189 | char *opt_usage_and_exit(const char *extra) |
| 190 | { |
nothing calls this directly
no test coverage detected