auxzlib.c /size: 332 b    last modification: 2024-01-16 10:22
1/*
2    See license.txt in the root of this project.
3*/
4
5# include "auxzlib.h"
6# include "auxmemory.h"
7
8void *lmt_zlib_alloc(void *opaque, size_t items, size_t size)
9{
10    (void) opaque;
11    return lmt_memory_malloc((size_t) items * size);
12}
13
14void  lmt_zlib_free(void *opaque, void *p)
15{
16    (void) opaque;
17    lmt_memory_free(p);
18}
19