dmmlib.h 305 B

12345678910111213
  1. #ifndef DMMLIB_H
  2. #include "heap.h"
  3. static allocator_t systemallocator;
  4. void * custom_ahmalloc(allocator_t* allocator, heap_t* heap, size_t size);
  5. void * custom_malloc(size_t size);
  6. void custom_ahfree(allocator_t *allocator, heap_t* heap, void *ptr);
  7. void custom_free(void *ptr);
  8. #endif /* DMMLIB_H */