heap_block_getfirst.c 266 B

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