Utils: Include stdint.h and fix signess in sdigits10().

This commit is contained in:
antirez
2015-02-27 16:01:45 +01:00
parent 084a59c324
commit 0e5e8ca9e6
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@
#ifndef __REDIS_UTIL_H
#define __REDIS_UTIL_H
#include <stdint.h>
#include "sds.h"
int stringmatchlen(const char *p, int plen, const char *s, int slen, int nocase);