| 36 | } |
| 37 | |
| 38 | CMDLIST * cmdlist_append_target( CMDLIST * l, TARGET * t ) |
| 39 | { |
| 40 | CMDLIST * result = (CMDLIST *)BJAM_MALLOC( sizeof( CMDLIST ) ); |
| 41 | result->iscmd = 0; |
| 42 | result->next = l; |
| 43 | result->impl.t = t; |
| 44 | return result; |
| 45 | } |
| 46 | |
| 47 | void cmdlist_free( CMDLIST * l ) |
| 48 | { |