]> git.saurik.com Git - redis.git/commitdiff
Add stdint.h in endianconv.h to fix issue #336.
authorantirez <antirez@gmail.com>
Wed, 15 Feb 2012 11:21:04 +0000 (12:21 +0100)
committerantirez <antirez@gmail.com>
Wed, 15 Feb 2012 11:21:04 +0000 (12:21 +0100)
src/endianconv.h

index 7ee8917abedb71b8dc090af2f22ebd458909d433..f76e0e6b3ebe6d8717b0fcda8f8a0c24bd21f13a 100644 (file)
@@ -33,6 +33,8 @@
 #ifndef __ENDIANCONV_H
 #define __ENDIANCONV_H
 
 #ifndef __ENDIANCONV_H
 #define __ENDIANCONV_H
 
+#include <stdint.h>
+
 void memrev16(void *p);
 void memrev32(void *p);
 void memrev64(void *p);
 void memrev16(void *p);
 void memrev32(void *p);
 void memrev64(void *p);