| 693 | } |
| 694 | |
| 695 | static void get_dep_str(struct gstr *r, struct expr *expr, const char *prefix) |
| 696 | { |
| 697 | if (!expr_is_yes(expr)) { |
| 698 | str_append(r, prefix); |
| 699 | expr_gstr_print(expr, r); |
| 700 | str_append(r, "\n"); |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | int __attribute__((weak)) get_jump_key_char(void) |
| 705 | { |
no test coverage detected