| 442 | |
| 443 | |
| 444 | static inline void die_for_incompatible_opt3(int opt1, const char *opt1_name, |
| 445 | int opt2, const char *opt2_name, |
| 446 | int opt3, const char *opt3_name) |
| 447 | { |
| 448 | die_for_incompatible_opt4(opt1, opt1_name, |
| 449 | opt2, opt2_name, |
| 450 | opt3, opt3_name, |
| 451 | 0, ""); |
| 452 | } |
| 453 | |
| 454 | static inline void die_for_incompatible_opt2(int opt1, const char *opt1_name, |
| 455 | int opt2, const char *opt2_name) |
no test coverage detected