12345678910111213 |
- #ifndef DMMLIB_H
- #include "heap.h"
- static allocator_t systemallocator;
- void * custom_ahmalloc(allocator_t* allocator, heap_t* heap, size_t size);
- void * custom_malloc(size_t size);
- void custom_ahfree(allocator_t *allocator, heap_t* heap, void *ptr);
- void custom_free(void *ptr);
- #endif /* DMMLIB_H */
|