diff options
author | jinjiazhang <jinjiazhang@tencent.com> | 2019-04-13 10:38:34 +0800 |
---|---|---|
committer | jinjiazhang <jinjiazhang@tencent.com> | 2019-04-13 10:38:34 +0800 |
commit | cdb836d5f845d2bf0fbe58671d073869f41a9936 (patch) | |
tree | 1c54c2f3327c67da17bf718eb9dc353cc168bfda /hiredis.h | |
parent | 5aa2397f9ec494380774fb9155446f14ebbf3d1f (diff) |
Fix Compile Error On Windows (Visual Studio)
Diffstat (limited to 'hiredis.h')
-rw-r--r-- | hiredis.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -35,7 +35,11 @@ #define __HIREDIS_H #include "read.h" #include <stdarg.h> /* for va_list */ +#ifndef _WIN32 #include <sys/time.h> /* for struct timeval */ +#else +#include <winsock2.h> +#endif #include <stdint.h> /* uintXX_t, etc */ #include "sds.h" /* for sds */ |