Skip to content
Snippets Groups Projects
Commit 7943c301 authored by Lev Walkin's avatar Lev Walkin
Browse files

stdint only if not specifying types directly

parent 0b1eb0e7
No related branches found
No related tags found
No related merge requests found
...@@ -24,7 +24,6 @@ ...@@ -24,7 +24,6 @@
#ifdef WIN32 #ifdef WIN32
#include <malloc.h> #include <malloc.h>
#include <stdint.h>
#define snprintf _snprintf #define snprintf _snprintf
#define vsnprintf _vsnprintf #define vsnprintf _vsnprintf
...@@ -52,6 +51,8 @@ typedef unsigned int uint32_t; ...@@ -52,6 +51,8 @@ typedef unsigned int uint32_t;
#define finite _finite #define finite _finite
#define copysign _copysign #define copysign _copysign
#define ilogb _logb #define ilogb _logb
#else /* !_MSC_VER */
#include <stdint.h>
#endif /* _MSC_VER */ #endif /* _MSC_VER */
#else /* !WIN32 */ #else /* !WIN32 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment