From cdd6f1ebec7b6cbcd0a5547d85d7a1f99cff93c8 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Thu, 18 May 2023 00:27:16 +0100 Subject: [PATCH] Renamed alloc function to allocate --- allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allocator.h b/allocator.h index 3baccd1..c836491 100644 --- a/allocator.h +++ b/allocator.h @@ -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