* Checks an item to make sure it hasn't been overwritten since it was freed, * prior to freeing it back to available memory. * * Complies with standard fini arg/return * */
| 221 | * |
| 222 | */ |
| 223 | void |
| 224 | mtrash_fini(void *mem, int size) |
| 225 | { |
| 226 | (void)mtrash_ctor(mem, size, NULL, 0); |
| 227 | } |
nothing calls this directly
no test coverage detected