| 78 | */ |
| 79 | |
| 80 | void target_include( TARGET * const including, TARGET * const included ) |
| 81 | { |
| 82 | TARGET * const internal = get_target_includes( including ); |
| 83 | internal->depends = targetentry( internal->depends, included ); |
| 84 | } |
| 85 | |
| 86 | void target_include_many( TARGET * const including, LIST * const included_names |
| 87 | ) |
nothing calls this directly
no test coverage detected