diff options
author | antirez <antirez@metal.(none)> | 2011-05-16 17:20:27 +0200 |
---|---|---|
committer | antirez <antirez@metal.(none)> | 2011-05-16 17:20:27 +0200 |
commit | 330c90b01848f0f7b945aafd0f36c1703adbfd7f (patch) | |
tree | 6356af0cfb82ceb2cd1248de8c87f00ec4e16930 /src/util.c | |
parent | cb16b6c3899d0696a7e633c29f764e06b222b2fe (diff) | |
download | redis-330c90b01848f0f7b945aafd0f36c1703adbfd7f.tar.gz |
fmacros in utils.c to avoid warning about strcasecmp()
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c index e83dbeddc..f5a23af2a 100644 --- a/src/util.c +++ b/src/util.c @@ -1,9 +1,11 @@ +#include "fmacros.h" #include <stdlib.h> #include <stdio.h> #include <string.h> #include <ctype.h> #include <limits.h> #include <math.h> + #include "util.h" /* Glob-style pattern matching. */ |