Commit a0b9f04e authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Move stdarg.h include to the hiredis header file

parent 44a2d08b
...@@ -31,7 +31,6 @@ ...@@ -31,7 +31,6 @@
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <stdarg.h>
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#ifndef __HIREDIS_H #ifndef __HIREDIS_H
#define __HIREDIS_H #define __HIREDIS_H
#include <stdarg.h>
#define REDIS_ERR -1 #define REDIS_ERR -1
#define REDIS_OK 0 #define REDIS_OK 0
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment