diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 17:25:20 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-10-31 17:25:20 +0100 |
commit | 6042c569b1b364495235a87a3988ad99e3eb4dad (patch) | |
tree | fe0facb15f98dfe838199f7243e2cfecfa0dfec3 | |
parent | 1d4f16b57108734d6ab591791a8e0cae223972e6 (diff) |
Move include of stdio.h to hiredis.h for size_t
-rw-r--r-- | hiredis.c | 1 | ||||
-rw-r--r-- | hiredis.h | 3 |
2 files changed, 2 insertions, 2 deletions
@@ -27,7 +27,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> @@ -29,7 +29,8 @@ #ifndef __HIREDIS_H #define __HIREDIS_H -#include <stdarg.h> +#include <stdio.h> /* for size_t */ +#include <stdarg.h> /* for va_list */ #define REDIS_ERR -1 #define REDIS_OK 0 |