summaryrefslogtreecommitdiff
path: root/deps/hiredis/zmalloc.h
blob: 99b87ace9ff43bc2c54a40e67637140093235d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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