[4057] added: Line of sight (vmaps) [part 2] (last part)
[mangos-git.git] / contrib / vmap_extractor_v2 / stormlib / zlib / zmemory.c
blob9a6ac61f551e65b28c7f40610919c8a9797c3502
1 /* zmemory.c
2 Internal memory alloc and memory free functions
3 */
5 #include <malloc.h>
7 #include "zlib.h"
9 const char *z_errmsg[10]; // Needed by zlib
11 voidpf zcalloc(voidpf opaque, uInt items, uInt size)
13 return (voidpf)calloc(items, size);
16 void zcfree(voidpf opaque, voidpf address)
18 free(address);