[util] Define ALLOC_FREE_BLOCKS for DEBUG_QF_MEMORY

More bitrot.
This commit is contained in:
Bill Currie 2023-10-02 20:40:21 +09:00
parent 471f5488ff
commit bde35749f5

View file

@ -109,6 +109,7 @@ static struct DARRAY_TYPE(t *) n##_blocks = DARRAY_STATIC_INIT(8)
#define ALLOC_STATE(t,n) \
static t *n##_freelist;
#define ALLOC_FREE_BLOCKS(n)
#define FREE(n, p) do { free (p); } while (0)
#endif