"tests/sentinel/vscode:/vscode.git/clone" did not exist on "1f72ec7dad0874c0e5163a21edd345e7e3f92ca1"
Commit a8ecd3f0 authored by antirez's avatar antirez
Browse files

Dummy zmalloc.h restored into deps/hiredis.

parent 6ee25dc4
/* 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
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment