| 1411 | } |
| 1412 | |
| 1413 | static void debug_path(struct traverse_info *info) |
| 1414 | { |
| 1415 | if (info->prev) { |
| 1416 | debug_path(info->prev); |
| 1417 | if (*info->prev->name) |
| 1418 | putchar('/'); |
| 1419 | } |
| 1420 | printf("%s", info->name); |
| 1421 | } |
| 1422 | |
| 1423 | static void debug_name_entry(int i, struct name_entry *n) |
| 1424 | { |
no outgoing calls
no test coverage detected