]>
git.saurik.com Git - redis.git/blob - config.h
   5 #include <AvailabilityMacros.h> 
   8 /* test for malloc_size() */ 
  10 #include <malloc/malloc.h> 
  11 #define HAVE_MALLOC_SIZE 1 
  12 #define redis_malloc_size(p) malloc_size(p) 
  15 /* define redis_fstat to fstat or fstat64() */ 
  16 #if defined(__APPLE__) && !defined(MAC_OS_X_VERSION_10_6) 
  17 #define redis_fstat fstat64 
  18 #define redis_stat stat64 
  20 #define redis_fstat fstat 
  21 #define redis_stat stat 
  24 /* test for backtrace() */ 
  25 #if defined(__APPLE__) || defined(__linux__) 
  26 #define HAVE_BACKTRACE 1