Renamed alloc function to allocate
This commit is contained in:
parent
938a0b3dc8
commit
cdd6f1ebec
@ -8,6 +8,6 @@ typedef struct allocator allocator_t;
|
|||||||
|
|
||||||
allocator_t *init_allocator(u64 size);
|
allocator_t *init_allocator(u64 size);
|
||||||
void deinit_allocator(allocator_t **allocator);
|
void deinit_allocator(allocator_t **allocator);
|
||||||
void *alloc(allocator_t *allocator, u64 size);
|
void *allocate(allocator_t *allocator, u64 size);
|
||||||
|
|
||||||
#endif // !ALLOCATOR_H
|
#endif // !ALLOCATOR_H
|
||||||
|
Loading…
x
Reference in New Issue
Block a user