From: antirez Date: Tue, 27 Jul 2010 12:30:02 +0000 (+0200) Subject: malloc definition with deprecated attribute was duplicated, one removed X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/f99e660b44281cd6bd6c24c60f1ebfb5e0e994e1?ds=inline malloc definition with deprecated attribute was duplicated, one removed --- diff --git a/src/redis.h b/src/redis.h index 63041860..fb051f8e 100644 --- a/src/redis.h +++ b/src/redis.h @@ -887,7 +887,6 @@ void watchCommand(redisClient *c); void unwatchCommand(redisClient *c); #if defined(__GNUC__) -void *malloc(size_t size) __attribute__ ((deprecated)); void *calloc(size_t count, size_t size) __attribute__ ((deprecated)); void free(void *ptr) __attribute__ ((deprecated)); void *malloc(size_t size) __attribute__ ((deprecated));