Remove unused definition/struct and function

Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com>
This commit is contained in:
Denys Fedoryshchenko
2025-11-23 20:09:14 +02:00
parent 66cad4ffb1
commit 7f08560e6d

View File

@@ -3,16 +3,10 @@
#include <stdint.h>
struct mempool_stat_t
{
uint32_t allocated;
uint32_t available;
};
typedef void * mempool_t;
mempool_t *mempool_create(int size);
mempool_t *mempool_create2(int size);
struct mempool_stat_t mempool_get_stat(void);
#ifdef MEMDEBUG
#include "memdebug.h"