From dbb2cdfcd793598b0db5d108577a6239ae3f0a61 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Tue, 12 Aug 2025 08:56:17 -0400 Subject: [PATCH] remove some useless stuff --- projects/core/gryphn_allocators.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/projects/core/gryphn_allocators.h b/projects/core/gryphn_allocators.h index 965236f..a100f82 100644 --- a/projects/core/gryphn_allocators.h +++ b/projects/core/gryphn_allocators.h @@ -1,5 +1,5 @@ #pragma once -#include +#include typedef void* (*PFN_gnMalloc) (size_t size, void* userData); typedef void* (*PFN_gnCalloc) (int cnt, size_t size, void* userData); @@ -13,5 +13,3 @@ typedef struct gnAllocators { PFN_gnRealloc realloc; PFN_gnFree free; } gnAllocators; - -#define gnMalloc(allocators, size) allocators->malloc(size, allocators->userData)