sortloot() callers should use this to free up memory it allocates */
| 644 | |
| 645 | /* sortloot() callers should use this to free up memory it allocates */ |
| 646 | void |
| 647 | unsortloot(Loot **loot_array_p) |
| 648 | { |
| 649 | if (*loot_array_p) |
| 650 | free((genericptr_t) *loot_array_p), *loot_array_p = (Loot *) 0; |
| 651 | } |
| 652 | |
| 653 | #if 0 /* 3.6.0 'revamp' -- simpler than current, but ultimately too simple */ |
| 654 | void |
no outgoing calls
no test coverage detected