Add stdint.h in endianconv.h to fix issue #336.

This commit is contained in:
antirez 2012-02-15 12:21:04 +01:00
parent 4a701b3801
commit 3b0600c777

View File

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