Commit 7943c301 authored by Lev Walkin's avatar Lev Walkin

stdint only if not specifying types directly

parent 0b1eb0e7
......@@ -24,7 +24,6 @@
#ifdef WIN32
#include <malloc.h>
#include <stdint.h>
#define snprintf _snprintf
#define vsnprintf _vsnprintf
......@@ -52,6 +51,8 @@ typedef unsigned int uint32_t;
#define finite _finite
#define copysign _copysign
#define ilogb _logb
#else /* !_MSC_VER */
#include <stdint.h>
#endif /* _MSC_VER */
#else /* !WIN32 */
......
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