1234567891011121314151617 |
- #include "private.h"
- lub_heap_block_t *lub_heap_block_getnext(lub_heap_block_t * this)
- {
- lub_heap_block_t *result = NULL;
- lub_heap_tag_t *tail = lub_heap_block__get_tail(this);
-
- if (0 == tail->segment) {
-
- result = (lub_heap_block_t *) & tail[1];
- }
- return result;
- }
|