remove some useless stuff

This commit is contained in:
Gregory Wells
2025-08-12 08:56:17 -04:00
parent 5b37555a34
commit dbb2cdfcd7

View File

@@ -1,5 +1,5 @@
#pragma once
#include <stdlib.h>
#include <stddef.h>
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)