123456789101112131415161718192021222324 |
- #include "private.h"
- lub_heap_block_t *lub_heap_block_getprevious(lub_heap_block_t * this)
- {
- lub_heap_block_t *result = NULL;
-
- if (0 == this->alloc.tag.segment) {
-
- lub_heap_tag_t *tag = &(&this->alloc.tag)[-1];
-
- tag = &tag[1 - tag->words];
-
- result = (lub_heap_block_t *) tag;
- }
- return result;
- }
|