1
0
mirror of https://github.com/fluencelabs/redis synced 2025-03-19 00:50:50 +00:00

14 lines
267 B
C

/* Drop in replacement for zmalloc.h in order to just use libc malloc without
* any wrappering. */
#ifndef ZMALLOC_H
#define ZMALLOC_H
#define zmalloc malloc
#define zrealloc realloc
#define zcalloc(x) calloc(x,1)
#define zfree free
#define zstrdup strdup
#endif