msvc 2015 - client will break if integer types are redefined on this compiler.

This commit is contained in:
Fabrizio Fabbri 2016-09-07 11:18:56 -04:00
parent 08cc2350b9
commit 3ff0b11f7b

View file

@ -218,12 +218,16 @@ typedef unsigned char ecl_base_char;
/* #undef HAVE_FLOAT_COMPLEX */
/* Missing integer types */
#if _MSC_VER < 1900
typedef char int8_t;
typedef short int16_t;
typedef int int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
#else
#include <stdint.h>
#endif
/* We can use small, two-words conses, without type information */
/* #undef ECL_SMALL_CONS */