| 330 | } |
| 331 | |
| 332 | void variable_all_del(void) |
| 333 | { |
| 334 | struct variable *v, *tmp; |
| 335 | |
| 336 | list_for_each_entry_safe(v, tmp, &variable_list, node) |
| 337 | variable_del(v); |
| 338 | } |
| 339 | |
| 340 | /* |
| 341 | * Evaluate a clause with arguments. argc/argv are arguments from the upper |
no test coverage detected