| 308 | */ |
| 309 | |
| 310 | ACTIONS * actionlist( ACTIONS * chain, ACTION * action ) |
| 311 | { |
| 312 | ACTIONS * const actions = (ACTIONS *)BJAM_MALLOC( sizeof( ACTIONS ) ); |
| 313 | actions->action = action; |
| 314 | ++action->refs; |
| 315 | if ( !chain ) chain = actions; |
| 316 | else chain->tail->next = actions; |
| 317 | chain->tail = actions; |
| 318 | actions->next = 0; |
| 319 | return chain; |
| 320 | } |
| 321 | |
| 322 | static SETTINGS * settings_freelist; |
| 323 |