1234567891011 |
- #ifndef SYS_ALLOC_H
- #define SYS_ALLOC_H
- #ifndef WITH_MEMORY_SPACE_AWARENESS
- void *sys_alloc(heap_t *heap, size_t size);
- #else
- void *sys_alloc(allocator_t *allocator, heap_t *heap, size_t size);
- #endif /* WITH_MEMORY_SPACE_AWARENESS */
- #endif /* SYS_ALLOC_H */
|