heap_block_getfirst.c 265 B

123456789
  1. #include "private.h"
  2. /*--------------------------------------------------------- */
  3. lub_heap_block_t *
  4. lub_heap_block_getfirst(const lub_heap_segment_t *seg)
  5. {
  6. return (lub_heap_block_t*)&seg[1];
  7. }
  8. /*--------------------------------------------------------- */