tv18/tv/js/手机ubuntu22.04一键安装hipy-server说明/hipy-server_build/redis-3.0.6/deps/hiredis/zmalloc.h
2025-07-31 20:12:13 +08:00

13 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