Deletes an item allocated previously */
| 235 | |
| 236 | /* Deletes an item allocated previously */ |
| 237 | void Delete(Type *t) |
| 238 | { |
| 239 | ((block_item *) t) -> next_free = first_free; |
| 240 | first_free = (block_item *) t; |
| 241 | } |
| 242 | |
| 243 | /***********************************************************************/ |
| 244 |
no outgoing calls
no test coverage detected