diff options
Diffstat (limited to 'deps/hiredis/sdsalloc.h')
-rw-r--r-- | deps/hiredis/sdsalloc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/hiredis/sdsalloc.h b/deps/hiredis/sdsalloc.h index 531d41929..f43023c48 100644 --- a/deps/hiredis/sdsalloc.h +++ b/deps/hiredis/sdsalloc.h @@ -1,6 +1,7 @@ /* SDSLib 2.0 -- A C dynamic strings library * * Copyright (c) 2006-2015, Salvatore Sanfilippo <antirez at gmail dot com> + * Copyright (c) 2015, Oran Agra * Copyright (c) 2015, Redis Labs, Inc * All rights reserved. * @@ -36,7 +37,6 @@ * the include of your alternate allocator if needed (not needed in order * to use the default libc allocator). */ -#include "zmalloc.h" -#define s_malloc zmalloc -#define s_realloc zrealloc -#define s_free zfree +#define s_malloc malloc +#define s_realloc realloc +#define s_free free |