From 23d4709dfbdc5d8f669c2e376159ffdfb4d37471 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 27 Mar 2009 22:00:27 +0100 Subject: [PATCH] feature macros defined to play well with C99 --- anet.c | 2 ++ dict.c | 2 ++ redis-cli.c | 2 ++ redis.c | 4 +++- 4 files changed, 9 insertions(+), 1 deletion(-) diff --git a/anet.c b/anet.c index d58e85b6..893f42c8 100644 --- a/anet.c +++ b/anet.c @@ -28,6 +28,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include "fmacros.h" + #include #include #include diff --git a/dict.c b/dict.c index 2d186c1d..4e740e7d 100644 --- a/dict.c +++ b/dict.c @@ -33,6 +33,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include "fmacros.h" + #include #include #include diff --git a/redis-cli.c b/redis-cli.c index 6ced5abc..c937ae84 100644 --- a/redis-cli.c +++ b/redis-cli.c @@ -28,6 +28,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include "fmacros.h" + #include #include #include diff --git a/redis.c b/redis.c index 87521e16..003193f4 100644 --- a/redis.c +++ b/redis.c @@ -27,7 +27,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define REDIS_VERSION "0.08" +#define REDIS_VERSION "0.09" + +#include "fmacros.h" #include #include -- GitLab