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