]>
git.saurik.com Git - redis.git/blob - config.h
4 /* test for malloc_size() */
6 #include <malloc/malloc.h>
7 #define HAVE_MALLOC_SIZE 1
8 #define redis_malloc_size(p) malloc_size(p)
11 /* define redis_fstat to fstat or fstat64() */
13 #define redis_fstat fstat64
14 #define redis_stat stat64
16 #define redis_fstat fstat
17 #define redis_stat stat
20 /* test for backtrace() */
21 #if defined(__APPLE__) || defined(__linux__)
22 #define HAVE_BACKTRACE 1