Renamed alloc function to allocate

This commit is contained in:
Abdelrahman Said 2023-05-18 00:27:16 +01:00
parent 938a0b3dc8
commit cdd6f1ebec

View File

@ -8,6 +8,6 @@ typedef struct allocator allocator_t;
allocator_t *init_allocator(u64 size);
void deinit_allocator(allocator_t **allocator);
void *alloc(allocator_t *allocator, u64 size);
void *allocate(allocator_t *allocator, u64 size);
#endif // !ALLOCATOR_H