sys_alloc.h 262 B

1234567891011
  1. #ifndef SYS_ALLOC_H
  2. #define SYS_ALLOC_H
  3. #ifndef WITH_MEMORY_SPACE_AWARENESS
  4. void *sys_alloc(heap_t *heap, size_t size);
  5. #else
  6. void *sys_alloc(allocator_t *allocator, heap_t *heap, size_t size);
  7. #endif /* WITH_MEMORY_SPACE_AWARENESS */
  8. #endif /* SYS_ALLOC_H */